@forsakringskassan/eslint-config 13.5.0 → 13.5.2

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 +8 -1
  2. package/package.json +2 -2
package/index.mjs CHANGED
@@ -219,7 +219,14 @@ export default [
219
219
  ],
220
220
  "unicorn/filename-case": [
221
221
  "error",
222
- { case: "kebabCase", ignore: ["^Gruntfile.js$"] },
222
+ {
223
+ case: "kebabCase",
224
+ ignore: [
225
+ "^Gruntfile.js$",
226
+ /* ignore mocks for @forsakringskassan/apimock-express */
227
+ "_(get|post|put|delete).(js|cjs|mjs|ts)$",
228
+ ],
229
+ },
223
230
  ], // enforce kebab-case in filenames
224
231
  "unicorn/import-style": "off", // off for now
225
232
  "unicorn/isolated-functions": "error",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@forsakringskassan/eslint-config",
3
- "version": "13.5.0",
3
+ "version": "13.5.2",
4
4
  "description": "Försäkringskassans eslint shareable config",
5
5
  "keywords": [
6
6
  "eslint"
@@ -42,5 +42,5 @@
42
42
  "engines": {
43
43
  "node": ">= 22.0"
44
44
  },
45
- "gitHead": "b07a58cfff4cd3500908fc166180092e63670d63"
45
+ "gitHead": "7ce1ef387cfda0a8a275020b2058d891b39463ae"
46
46
  }