From 115561cca93e6bea968ddc8a332e99e8594e4970 Mon Sep 17 00:00:00 2001 From: Josh Johnson Date: Mon, 23 Dec 2019 16:35:45 +0000 Subject: [PATCH] Fix lint script --- .eslintrc.json | 4 +++- package.json | 2 +- 2 files changed, 4 insertions(+), 2 deletions(-) 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",