-
Notifications
You must be signed in to change notification settings - Fork 57
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
- Replaces existing git hooks with pre-commit framework based git hooks. - Adds formatting changes introduced by prettier and eslint. --------- Co-authored-by: Linda Nguyen <[email protected]> Co-authored-by: Mads Kelberg <[email protected]> Co-authored-by: lindot09 <[email protected]> Co-authored-by: lindot11 <[email protected]>
- Loading branch information
1 parent
8162d29
commit 3080647
Showing
54 changed files
with
643 additions
and
571 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
default: true | ||
MD033: false | ||
MD013: | ||
code_blocks: false | ||
tables: false | ||
MD046: | ||
style: "fenced" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,88 @@ | ||
default_install_hook_types: [pre-commit, pre-push] | ||
|
||
repos: | ||
- repo: local | ||
hooks: | ||
- id: yarn-install-client | ||
name: yarn install client | ||
entry: bash | ||
language: system | ||
files: "^client/.*" | ||
args: ["-c", "cd client && yarn install"] | ||
- id: yarn-install-runner | ||
name: yarn install runner | ||
entry: bash | ||
language: system | ||
files: "^servers/execution/runner/.*" | ||
args: ["-c", "cd servers/execution/runner && yarn install"] | ||
- id: yarn-install-lib | ||
name: yarn install lib | ||
entry: bash | ||
language: system | ||
files: "^servers/lib/.*" | ||
args: ["-c", "cd servers/lib && yarn install"] | ||
|
||
- id: yarn-jest-client | ||
name: yarn jest client | ||
entry: bash | ||
language: system | ||
files: "^client/.*" | ||
args: ["-c", "cd client && yarn jest . --coverage=false"] | ||
stages: [pre-push] | ||
- id: yarn-test-runner | ||
name: yarn test runner | ||
entry: bash | ||
language: system | ||
files: "^servers/execution/runner/.*" | ||
args: ["-c", "cd servers/execution/runner && yarn test:nocov"] | ||
stages: [pre-push] | ||
# - id: yarn-test-lib | ||
# name: yarn test lib | ||
# entry: bash | ||
# language: system | ||
# files: "^servers/lib/.*" | ||
# args: ["-c", "cd servers/lib && yarn jest . --coverage=false"] | ||
# stages: [pre-push] | ||
|
||
- repo: https://github.com/pre-commit/mirrors-prettier | ||
rev: v3.1.0 | ||
hooks: | ||
- id: prettier | ||
args: ["--ignore-path", "../.gitignore", "--write"] | ||
files: '^(client|servers/execution/runner|servers/lib)/.*\.(ts|tsx|css|scss)$' | ||
stages: [pre-commit] | ||
|
||
- repo: https://github.com/pre-commit/mirrors-eslint | ||
rev: v8.54.0 | ||
hooks: | ||
- id: eslint | ||
args: ["--fix"] | ||
files: "^(client|servers/execution/runner|servers/lib)/.*" | ||
stages: [pre-commit] | ||
|
||
- repo: https://github.com/igorshubovych/markdownlint-cli | ||
rev: v0.37.0 | ||
hooks: | ||
- id: markdownlint | ||
files: '.*\.md$' | ||
entry: ./script/markdownlint-hook.sh | ||
verbose: true | ||
stages: [pre-commit] | ||
|
||
- repo: https://github.com/syntaqx/git-hooks | ||
rev: v0.0.18 | ||
hooks: | ||
- id: shellcheck | ||
files: '.*' | ||
stages: [pre-commit] | ||
|
||
- repo: https://github.com/pre-commit/pre-commit-hooks | ||
rev: v4.5.0 | ||
hooks: | ||
- id: check-json | ||
files: '^(docs|deploy|script|ssl)/.*' | ||
stages: [pre-commit] | ||
- id: check-yaml | ||
files: '^(docs|deploy|script|ssl)/.*' | ||
stages: [pre-commit] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
{ | ||
"singleQuote": true, | ||
"trailingComma": "all" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.