Exclude test from eslint checking since it always was excluded, and I can't get it to check

This commit is contained in:
Andy Balaam
2023-02-23 17:10:06 +00:00
parent 26a308d8c6
commit f960700a2a
3 changed files with 6 additions and 6 deletions
+2 -2
View File
@@ -21,11 +21,11 @@
"start": "yarn run build:ts && yarn run build:res && electron .",
"lint": "yarn lint:types && yarn lint:js",
"lint:js": "yarn lint:js:src && yarn lint:js:scripts && yarn lint:js:hak",
"lint:js:src": "eslint --max-warnings 0 src test",
"lint:js:src": "eslint --max-warnings 0 src",
"lint:js:scripts": "eslint --max-warnings 0 --config .eslintrc-scripts.js scripts",
"lint:js:hak": "eslint --max-warnings 0 --config .eslintrc-hak.js hak",
"lint:js-fix": "yarn lint:js-fix:src && yarn lint:js-fix:scripts && yarn lint:js-fix:hak",
"lint:js-fix:src": "eslint --fix --max-warnings 0 src test",
"lint:js-fix:src": "eslint --fix --max-warnings 0 src",
"lint:js-fix:scripts": "eslint --fix --max-warnings 0 --config .eslintrc-scripts.js scripts",
"lint:js-fix:hak": "eslint --fix --max-warnings 0 --config .eslintrc-hak.js hak",
"lint:types": "yarn lint:types:src && yarn lint:types:scripts && yarn lint:types:hak",