diff --git a/.eslintrc.json b/.eslintrc.json index f00286f..916e411 100644 --- a/.eslintrc.json +++ b/.eslintrc.json @@ -73,7 +73,9 @@ "no-restricted-syntax": "off", "compat/compat": "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" } }, { diff --git a/package.json b/package.json index 1168476..3fc6687 100644 --- a/package.json +++ b/package.json @@ -7,7 +7,7 @@ "scripts": { "start": "run-p js:watch css:watch", "build": "run-p js:build css:build", - "lint": "eslint src/scripts", + "lint": "eslint src/scripts/**/*.ts", "bundlesize": "bundlesize", "cypress:run": "cypress run", "cypress:open": "cypress open",