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:
parent
7e06517c8c
commit
85bef99608
@ -1,7 +1,4 @@
|
|||||||
{
|
{
|
||||||
"parserOptions": {
|
|
||||||
"project": "./tsconfig.strictNullChecks.json"
|
|
||||||
},
|
|
||||||
"extends": [
|
"extends": [
|
||||||
"plugin:@typescript-eslint/recommended",
|
"plugin:@typescript-eslint/recommended",
|
||||||
"plugin:@stylistic/recommended-extends",
|
"plugin:@stylistic/recommended-extends",
|
||||||
@ -9,7 +6,7 @@
|
|||||||
"plugin:import/typescript",
|
"plugin:import/typescript",
|
||||||
"prettier"
|
"prettier"
|
||||||
],
|
],
|
||||||
"plugins": ["@typescript-eslint", "@stylistic", "import", "unused-imports", "switch-allman", "strict-null-checks"],
|
"plugins": ["@typescript-eslint", "@stylistic", "import", "unused-imports", "switch-allman"],
|
||||||
"settings": {
|
"settings": {
|
||||||
"import/resolver": {
|
"import/resolver": {
|
||||||
"typescript": {
|
"typescript": {
|
||||||
@ -102,8 +99,7 @@
|
|||||||
}
|
}
|
||||||
],
|
],
|
||||||
"unused-imports/no-unused-imports-ts": "error",
|
"unused-imports/no-unused-imports-ts": "error",
|
||||||
"switch-allman/case-allman": "error",
|
"switch-allman/case-allman": "error"
|
||||||
"strict-null-checks/all": "warn"
|
|
||||||
},
|
},
|
||||||
"overrides": [
|
"overrides": [
|
||||||
{
|
{
|
||||||
|
@ -76,7 +76,6 @@
|
|||||||
"eslint-import-resolver-typescript": "~3.6",
|
"eslint-import-resolver-typescript": "~3.6",
|
||||||
"eslint-plugin-import": "~2.29",
|
"eslint-plugin-import": "~2.29",
|
||||||
"eslint-plugin-prettier": "~5.1",
|
"eslint-plugin-prettier": "~5.1",
|
||||||
"eslint-plugin-strict-null-checks": "~0.1",
|
|
||||||
"eslint-plugin-switch-allman": "~1.0",
|
"eslint-plugin-switch-allman": "~1.0",
|
||||||
"eslint-plugin-unused-imports": "~3.2",
|
"eslint-plugin-unused-imports": "~3.2",
|
||||||
"fs-extra": "~11.2",
|
"fs-extra": "~11.2",
|
||||||
|
@ -1,6 +0,0 @@
|
|||||||
{
|
|
||||||
"extends": "./tsconfig.json",
|
|
||||||
"compilerOptions": {
|
|
||||||
"strictNullChecks": true,
|
|
||||||
}
|
|
||||||
}
|
|
Loading…
x
Reference in New Issue
Block a user