@forsakringskassan/eslint-config 13.2.6 → 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.
Files changed (2) hide show
  1. package/index.mjs +1 -0
  2. package/package.json +2 -2
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.6",
3
+ "version": "13.2.10",
4
4
  "description": "Försäkringskassans eslint shareable config",
5
5
  "keywords": [
6
6
  "eslint"
@@ -41,5 +41,5 @@
41
41
  "engines": {
42
42
  "node": ">= 22.0"
43
43
  },
44
- "gitHead": "36f6845f46a5a8402d8183ab606d13bcdc14e20e"
44
+ "gitHead": "ef95af93e99a089d74b704a327f1615d7566ffe4"
45
45
  }