@juuso.piikkila/eslint-config-typescript 3.1.0 → 3.2.0

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/.nvmrc ADDED
@@ -0,0 +1 @@
1
+ 22.20
package/CHANGELOG.md CHANGED
@@ -1,3 +1,9 @@
1
+ ## [3.2.0](https://github.com/optioni/eslint-config-typescript/compare/3.1.0...3.2.0) (2025-10-10)
2
+
3
+ ### Features
4
+
5
+ * **deps:** update dependency eslint to ~9.37.0 ([d5ec0ac](https://github.com/optioni/eslint-config-typescript/commit/d5ec0ac034f28854147afff8cd6dfeef24fceed8))
6
+
1
7
  ## [3.1.0](https://github.com/optioni/eslint-config-typescript/compare/3.0.23...3.1.0) (2025-10-03)
2
8
 
3
9
  ### Features
@@ -1,4 +1,3 @@
1
- /* eslint-disable import/no-extraneous-dependencies */
2
1
  import stylisticPlugin from '@stylistic/eslint-plugin';
3
2
  import * as canonical from 'eslint-config-canonical/canonical';
4
3
  import * as regexp from 'eslint-config-canonical/regexp';
@@ -1,4 +1,3 @@
1
- /* eslint-disable import/no-extraneous-dependencies */
2
1
  import stylisticPlugin from '@stylistic/eslint-plugin';
3
2
  import typescriptEslintPlugin from '@typescript-eslint/eslint-plugin';
4
3
  import * as typescript from 'eslint-config-canonical/typescript';
package/eslint.config.mjs CHANGED
@@ -3,4 +3,9 @@ import rules from './configurations/base/index.mjs';
3
3
 
4
4
  export default [
5
5
  ...rules,
6
+ {
7
+ rules: {
8
+ 'import/no-extraneous-dependencies': 'off',
9
+ },
10
+ },
6
11
  ];
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@juuso.piikkila/eslint-config-typescript",
3
3
  "description": "ESLint config for typescript projects",
4
- "version": "3.1.0",
4
+ "version": "3.2.0",
5
5
  "main": "index.mjs",
6
6
  "author": "Juuso Piikkilä",
7
7
  "license": "MIT",
@@ -14,7 +14,7 @@
14
14
  "lint": "eslint \"configurations/**/*.mjs\" \"eslint.config.mjs\" \"index.mjs\""
15
15
  },
16
16
  "dependencies": {
17
- "eslint": "~9.36.0",
17
+ "eslint": "~9.37.0",
18
18
  "eslint-config-canonical": "~45.0.0",
19
19
  "eslint-plugin-vue": "~10.5.0",
20
20
  "eslint-plugin-vuejs-accessibility": "~2.4.0",
@@ -25,6 +25,7 @@
25
25
  "@semantic-release/changelog": "^6.0.1",
26
26
  "@semantic-release/git": "^10.0.1",
27
27
  "conventional-changelog-conventionalcommits": "^9.0.0",
28
- "semantic-release": "^24.0.0"
28
+ "semantic-release": "^24.0.0",
29
+ "typescript": "^5.9.3"
29
30
  }
30
31
  }