diff --git a/project/.eslintrc.json b/project/.eslintrc.json index c8ca42cc..f69b3c19 100644 --- a/project/.eslintrc.json +++ b/project/.eslintrc.json @@ -1,7 +1,4 @@ { - "parserOptions": { - "project": "./tsconfig.strictNullChecks.json" - }, "extends": [ "plugin:@typescript-eslint/recommended", "plugin:@stylistic/recommended-extends", @@ -9,7 +6,7 @@ "plugin:import/typescript", "prettier" ], - "plugins": ["@typescript-eslint", "@stylistic", "import", "unused-imports", "switch-allman", "strict-null-checks"], + "plugins": ["@typescript-eslint", "@stylistic", "import", "unused-imports", "switch-allman"], "settings": { "import/resolver": { "typescript": { @@ -102,8 +99,7 @@ } ], "unused-imports/no-unused-imports-ts": "error", - "switch-allman/case-allman": "error", - "strict-null-checks/all": "warn" + "switch-allman/case-allman": "error" }, "overrides": [ { diff --git a/project/package.json b/project/package.json index a9379324..d1eb710c 100644 --- a/project/package.json +++ b/project/package.json @@ -76,7 +76,6 @@ "eslint-import-resolver-typescript": "~3.6", "eslint-plugin-import": "~2.29", "eslint-plugin-prettier": "~5.1", - "eslint-plugin-strict-null-checks": "~0.1", "eslint-plugin-switch-allman": "~1.0", "eslint-plugin-unused-imports": "~3.2", "fs-extra": "~11.2", diff --git a/project/tsconfig.strictNullChecks.json b/project/tsconfig.strictNullChecks.json deleted file mode 100644 index c86b637a..00000000 --- a/project/tsconfig.strictNullChecks.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "extends": "./tsconfig.json", - "compilerOptions": { - "strictNullChecks": true, - } -}