-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
3849be1
commit 22abc78
Showing
5 changed files
with
842 additions
and
815 deletions.
There are no files selected for viewing
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 |
---|---|---|
|
@@ -66,6 +66,10 @@ | |
"combobox", | ||
"Cacheable", | ||
"Stalebot", | ||
"ssjagad" | ||
"gofmt", | ||
"eslintcache", | ||
"lefthook", | ||
"ssjagad", | ||
"jackspeak" | ||
] | ||
} |
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,17 @@ | ||
pre-commit: | ||
parallel: true | ||
commands: | ||
frontend-lint: | ||
glob: '*.{js,ts,tsx}' | ||
run: | | ||
eslint --cache --ignore-path ./.gitignore --fix {staged_files} | ||
yarn prettier --write {staged_files} | ||
stage_fixed: true | ||
backend-format: | ||
glob: '*pkg/**/*.go' | ||
run: gofmt -w -s {staged_files} | ||
stage_fixed: true | ||
spellcheck: | ||
run: yarn cspell -c cspell.config.json \"**/*.{ts,tsx,js,go,md,mdx,yml,yaml,json,scss,css}\" {staged_files} | ||
|
||
|
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 |
---|---|---|
|
@@ -63,6 +63,7 @@ | |
"identity-obj-proxy": "3.0.0", | ||
"jest": "^29.5.0", | ||
"jest-environment-jsdom": "^29.5.0", | ||
"lefthook": "^1.6.18", | ||
"lodash": "^4.17.21", | ||
"prettier": "^3.3.2", | ||
"replace-in-file-webpack-plugin": "^1.0.6", | ||
|
@@ -78,7 +79,8 @@ | |
"webpack-livereload-plugin": "^3.0.2" | ||
}, | ||
"resolutions": { | ||
"cosmiconfig": "8.3.6" | ||
"cosmiconfig": "8.3.6", | ||
"jackspeak": "2.1.1" | ||
}, | ||
"packageManager": "[email protected]" | ||
} |
Oops, something went wrong.