fix: renamed lint fix script

This commit is contained in:
StevanFreeborn
2023-02-03 23:43:26 -06:00
parent be9db8ebd8
commit 4103d0208e
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -1,6 +1,6 @@
#!/usr/bin/env sh #!/usr/bin/env sh
. "$(dirname -- "$0")/_/husky.sh" . "$(dirname -- "$0")/_/husky.sh"
npm run lint-fix-staged npm run lint-fix
npm run test-coverage npm run test-coverage
npm run format-staged npm run format-staged
+1 -1
View File
@@ -6,7 +6,7 @@
"types": "dist/index.d.ts", "types": "dist/index.d.ts",
"scripts": { "scripts": {
"lint": "eslint --ignore-path .eslintignore --ext .js,.ts .", "lint": "eslint --ignore-path .eslintignore --ext .js,.ts .",
"lint-fix-staged": "eslint --fix --ignore-path .eslintignore --ext .js,.ts . --max-warnings=0", "lint-fix": "eslint --fix --ignore-path .eslintignore --ext .js,.ts . --max-warnings=0",
"format-staged": "pretty-quick --staged", "format-staged": "pretty-quick --staged",
"format": "pretty-quick", "format": "pretty-quick",
"build": "npm run tests && npm run format && tsc", "build": "npm run tests && npm run format && tsc",