We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b992ce7 commit 619d390Copy full SHA for 619d390
package.json
@@ -21,7 +21,7 @@
21
"prepare": "if ./scripts/utils/check-is-in-git-install.sh; then ./scripts/build; fi",
22
"tsn": "ts-node -r tsconfig-paths/register",
23
"lint": "./scripts/lint",
24
- "fix": "eslint --fix --ext ts,js ."
+ "fix": "./scripts/format"
25
},
26
"dependencies": {
27
"@types/node": "^18.11.18",
scripts/format
@@ -5,4 +5,4 @@ set -e
5
cd "$(dirname "$0")/.."
6
7
echo "==> Running eslint --fix"
8
-./node_modules/.bin/eslint --fix --ext ts,js .
+ESLINT_USE_FLAT_CONFIG="false" ./node_modules/.bin/eslint --fix --ext ts,js .
scripts/lint
echo "==> Running eslint"
-./node_modules/.bin/eslint --ext ts,js .
+ESLINT_USE_FLAT_CONFIG="false" ./node_modules/.bin/eslint --ext ts,js .
0 commit comments