Skip to content

Commit 08caa2a

Browse files
committed
linter update in the project
1 parent 74bde70 commit 08caa2a

29 files changed

+458
-735
lines changed

.eslintignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
src/generated.ts
12
src/configurationType.ts
23
src/configurationTypeCache.jsonc
34
playground.ts

.eslintrc.json

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,11 @@
2929
}
3030
]
3131
}
32-
]
32+
],
33+
"unicorn/switch-case-braces": "off",
34+
"@typescript-eslint/consistent-type-imports": "off",
35+
"@typescript-eslint/ban-types": "off",
36+
"sonarjs/prefer-single-boolean-return": "off"
3337
},
3438
"overrides": [
3539
{

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@
123123
"watch-plugin": "node buildTsPlugin.mjs --watch",
124124
"build": "tsc && tsc -p typescript --noEmit && vscode-framework build && pnpm build-plugin",
125125
"build-plugin": "node buildTsPlugin.mjs && node buildTsPlugin.mjs --browser",
126-
"lint": "eslint {src/**,typescript/src/**}",
126+
"lint": "eslint {src,typescript/src}",
127127
"test": "pnpm test-plugin --run && pnpm integration-test",
128128
"test-plugin": "vitest --globals --dir typescript/test/ --environment ts-plugin",
129129
"integration-test": "node integration/prerun.mjs && tsc -p tsconfig.test.json && node testsOut/runTests.js",
@@ -176,8 +176,8 @@
176176
"chokidar-cli": "^3.0.0",
177177
"delay": "^5.0.0",
178178
"escape-string-regexp": "^5.0.0",
179-
"eslint": "^8.7.0",
180-
"eslint-config-zardoy": "^0.2.12",
179+
"eslint": "^8.56.0",
180+
"eslint-config-zardoy": "^0.2.17",
181181
"glob": "^8.0.3",
182182
"lodash": "^4.17.21",
183183
"lodash.get": "^4.4.2",

0 commit comments

Comments
 (0)