Fix lint script

This commit is contained in:
Josh Johnson 2019-12-23 16:35:45 +00:00
parent e198399348
commit 115561cca9
2 changed files with 4 additions and 2 deletions

View file

@ -73,7 +73,9 @@
"no-restricted-syntax": "off", "no-restricted-syntax": "off",
"compat/compat": "off", "compat/compat": "off",
"no-new": "off", "no-new": "off",
"@typescript-eslint/no-empty-function": "off" "@typescript-eslint/no-empty-function": "off",
"@typescript-eslint/no-explicit-any": "off",
"@typescript-eslint/no-non-null-assertion": "off"
} }
}, },
{ {

View file

@ -7,7 +7,7 @@
"scripts": { "scripts": {
"start": "run-p js:watch css:watch", "start": "run-p js:watch css:watch",
"build": "run-p js:build css:build", "build": "run-p js:build css:build",
"lint": "eslint src/scripts", "lint": "eslint src/scripts/**/*.ts",
"bundlesize": "bundlesize", "bundlesize": "bundlesize",
"cypress:run": "cypress run", "cypress:run": "cypress run",
"cypress:open": "cypress open", "cypress:open": "cypress open",