@forsakringskassan/eslint-config 13.2.4 → 13.2.10
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/index.mjs +1 -0
- package/package.json +4 -4
package/index.mjs
CHANGED
|
@@ -166,6 +166,7 @@ export default [
|
|
|
166
166
|
"sonarjs/no-empty-test-file": "off", // could be useful but it does not handle it.each or similar constructs thus yields more false positives than its worth */
|
|
167
167
|
"sonarjs/no-selector-parameter": "off", // not always possible (e.g. watcher handler in vue)
|
|
168
168
|
"sonarjs/no-skipped-tests": "off", // covered by jest/no-disabled-tests and mocha/no-pending-tests
|
|
169
|
+
"sonarjs/no-exclusive-tests": "off", // covered by jest/no-focused-tests and mocha/no-exclusive-tests
|
|
169
170
|
"sonarjs/no-small-switch": "off", // prefer to use small switches when the intention is to all more cases later
|
|
170
171
|
"sonarjs/no-unused-vars": "off", // covered by @typescript-eslint/no-unused-vars
|
|
171
172
|
"sonarjs/prefer-nullish-coalescing": "off", // requires typescript and strictNullChecks, which is sane, but we also use @typescript-eslint/prefer-nullish-coalescing so this becomes redundant
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@forsakringskassan/eslint-config",
|
|
3
|
-
"version": "13.2.
|
|
3
|
+
"version": "13.2.10",
|
|
4
4
|
"description": "Försäkringskassans eslint shareable config",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"eslint"
|
|
@@ -25,8 +25,8 @@
|
|
|
25
25
|
],
|
|
26
26
|
"dependencies": {
|
|
27
27
|
"@eslint-community/eslint-plugin-eslint-comments": "4.5.0",
|
|
28
|
-
"@eslint/js": "9.39.
|
|
29
|
-
"eslint": "9.39.
|
|
28
|
+
"@eslint/js": "9.39.2",
|
|
29
|
+
"eslint": "9.39.2",
|
|
30
30
|
"eslint-config-prettier": "10.1.8",
|
|
31
31
|
"eslint-import-resolver-node": "0.3.9",
|
|
32
32
|
"eslint-import-resolver-typescript": "4.4.4",
|
|
@@ -41,5 +41,5 @@
|
|
|
41
41
|
"engines": {
|
|
42
42
|
"node": ">= 22.0"
|
|
43
43
|
},
|
|
44
|
-
"gitHead": "
|
|
44
|
+
"gitHead": "ef95af93e99a089d74b704a327f1615d7566ffe4"
|
|
45
45
|
}
|