@qlik/eslint-config 2.0.4 → 2.0.6

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@qlik/eslint-config",
3
- "version": "2.0.4",
3
+ "version": "2.0.6",
4
4
  "description": "Qlik's ESLint configs",
5
5
  "license": "ISC",
6
6
  "repository": "git@github.com:qlik-oss/dev-tools-js.git",
@@ -19,9 +19,9 @@
19
19
  "registry": "https://registry.npmjs.org/"
20
20
  },
21
21
  "dependencies": {
22
- "@eslint-react/eslint-plugin": "^4.2.3",
22
+ "@eslint-react/eslint-plugin": "^5.7.0",
23
23
  "@eslint/js": "^10.0.1",
24
- "@typescript-eslint/utils": "^8.59.0",
24
+ "@typescript-eslint/utils": "^8.59.1",
25
25
  "@vitest/eslint-plugin": "^1.6.16",
26
26
  "confusing-browser-globals": "^1.0.11",
27
27
  "eslint-config-prettier": "^10.1.8",
@@ -29,8 +29,8 @@
29
29
  "eslint-import-resolver-typescript": "^4.4.4",
30
30
  "eslint-plugin-import-x": "^4.16.2",
31
31
  "eslint-plugin-testing-library": "^7.16.2",
32
- "globals": "^17.5.0",
33
- "typescript-eslint": "^8.59.0"
32
+ "globals": "^17.6.0",
33
+ "typescript-eslint": "^8.59.1"
34
34
  },
35
35
  "devDependencies": {
36
36
  "@types/confusing-browser-globals": "^1.0.3",
@@ -18,6 +18,7 @@ const vitestJS = mergeConfigs(
18
18
  files: ["**/__test{,s}__/**/*.{js,jsx}", "**/{test{,s},mock{,s}}/**/*.js", "**/*.{test,spec}.{js,jsx}"],
19
19
  rules: {
20
20
  // turn off/modify rules that suitable for tests in JavaScript
21
+ "no-await-in-loop": "off",
21
22
  },
22
23
  },
23
24
  );
@@ -37,7 +38,7 @@ const vitestTS = mergeConfigs(
37
38
  files: ["**/__test{,s}__/**/*.{ts,tsx}", "**/{test{,s},mock{,s}}/**/*.ts", "**/*.{test,spec}.{ts,tsx}"],
38
39
  rules: {
39
40
  // turn off/modify rules that suitable for tests in TypeScript
40
-
41
+ "no-await-in-loop": "off",
41
42
  // turn off all the rules that are too strict for tests, and warn on any explicit any types
42
43
  "@typescript-eslint/no-unsafe-assignment": "off",
43
44
  "@typescript-eslint/no-unsafe-member-access": "off",