removed null style check that was slowing down file processing (!381)

Co-authored-by: clodan <clodan@clodan.com>
Reviewed-on: https://dev.sp-tarkov.com/SPT/Server/pulls/381
Co-authored-by: Alex <clodan@noreply.dev.sp-tarkov.com>
Co-committed-by: Alex <clodan@noreply.dev.sp-tarkov.com>
(cherry picked from commit 130b12879e4bbc4e9b11b4d6d38bafda7a21df5a)
This commit is contained in:
Alex 2024-07-21 14:18:43 +00:00 committed by Dev
parent 7e06517c8c
commit 85bef99608
3 changed files with 2 additions and 13 deletions

View File

@ -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": [
{

View File

@ -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",

View File

@ -1,6 +0,0 @@
{
"extends": "./tsconfig.json",
"compilerOptions": {
"strictNullChecks": true,
}
}