eslint-config-scratch 13.0.3 → 13.0.5

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": "eslint-config-scratch",
3
- "version": "13.0.3",
3
+ "version": "13.0.5",
4
4
  "description": "Shareable ESLint config for Scratch",
5
5
  "main": "./lib/index.mjs",
6
6
  "scripts": {
@@ -38,16 +38,16 @@
38
38
  "@stylistic/eslint-plugin": "^5.3.1",
39
39
  "@trivago/prettier-plugin-sort-imports": "6.0.2",
40
40
  "eslint-config-prettier": "10.1.8",
41
- "eslint-plugin-formatjs": "5.4.2",
41
+ "eslint-plugin-formatjs": "6.2.0",
42
42
  "eslint-plugin-html": "8.1.4",
43
43
  "eslint-plugin-import-x": "4.16.1",
44
- "eslint-plugin-jsdoc": "61.7.1",
44
+ "eslint-plugin-jsdoc": "62.7.1",
45
45
  "eslint-plugin-jsx-a11y": "6.10.2",
46
46
  "eslint-plugin-react": "7.37.5",
47
47
  "eslint-plugin-react-hooks": "7.0.1",
48
- "globals": "16.5.0",
48
+ "globals": "17.4.0",
49
49
  "prettier": "3.8.1",
50
- "typescript-eslint": "8.46.3"
50
+ "typescript-eslint": "8.56.1"
51
51
  },
52
52
  "devDependencies": {
53
53
  "@commitlint/cli": "20.4.3",
@@ -60,7 +60,7 @@ exports[`'legacy' > Plain TS (bad) 1`] = `
60
60
  "endLine": 5,
61
61
  "line": 5,
62
62
  "messageId": "unusedVar",
63
- "nodeType": null,
63
+ "nodeType": "Identifier",
64
64
  "ruleId": "@typescript-eslint/no-unused-vars",
65
65
  },
66
66
  {
@@ -69,7 +69,7 @@ exports[`'legacy' > Plain TS (bad) 1`] = `
69
69
  "endLine": 8,
70
70
  "line": 8,
71
71
  "messageId": "unusedVar",
72
- "nodeType": null,
72
+ "nodeType": "Identifier",
73
73
  "ruleId": "@typescript-eslint/no-unused-vars",
74
74
  },
75
75
  {
@@ -162,7 +162,7 @@ exports[`'recommended' > Plain TS (bad) 1`] = `
162
162
  "endLine": 5,
163
163
  "line": 5,
164
164
  "messageId": "unusedVar",
165
- "nodeType": null,
165
+ "nodeType": "Identifier",
166
166
  "ruleId": "@typescript-eslint/no-unused-vars",
167
167
  },
168
168
  {
@@ -171,7 +171,7 @@ exports[`'recommended' > Plain TS (bad) 1`] = `
171
171
  "endLine": 8,
172
172
  "line": 8,
173
173
  "messageId": "unusedVar",
174
- "nodeType": null,
174
+ "nodeType": "Identifier",
175
175
  "ruleId": "@typescript-eslint/no-unused-vars",
176
176
  },
177
177
  {
@@ -188,7 +188,7 @@ exports[`'recommended' > Plain TS (bad) 1`] = `
188
188
  "endColumn": 24,
189
189
  "endLine": 17,
190
190
  "line": 17,
191
- "messageId": "unsafeCall",
191
+ "messageId": "errorCall",
192
192
  "nodeType": "Identifier",
193
193
  "ruleId": "@typescript-eslint/no-unsafe-call",
194
194
  },
@@ -6,7 +6,6 @@ const config = eslintConfigScratch.defineConfig(eslintConfigScratch.recommended,
6
6
  parserOptions: {
7
7
  projectService: true,
8
8
  tsconfigRootDir: import.meta.dirname,
9
- project: ['./tsconfig.json'],
10
9
  },
11
10
  },
12
11
  })