@juuso.piikkila/eslint-config-typescript 3.0.23 → 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,15 @@
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
+
7
+ ## [3.1.0](https://github.com/optioni/eslint-config-typescript/compare/3.0.23...3.1.0) (2025-10-03)
8
+
9
+ ### Features
10
+
11
+ * **deps:** update all minor dependency updates ([c85c9b4](https://github.com/optioni/eslint-config-typescript/commit/c85c9b4c3c959aa200b912783ffd4b4720871a58))
12
+
1
13
  ## [3.0.23](https://github.com/juusopiikkila/eslint-config-typescript/compare/3.0.22...3.0.23) (2025-04-23)
2
14
 
3
15
  ### Bug Fixes
package/README.md ADDED
@@ -0,0 +1,29 @@
1
+ # eslint-config-typescript
2
+
3
+ ESLint shareable config for TypeScript projects by Juuso Piikkilä.
4
+
5
+ ## Purpose
6
+ This repository publishes an ESLint configuration package for TypeScript projects.
7
+
8
+ ## Release & dependency automation
9
+ - Renovate is configured to:
10
+ - Ignore patch updates.
11
+ - Open grouped PRs for minor updates (group name: "all minor dependency updates").
12
+ - Open grouped PRs for major updates (group name: "all major dependency updates").
13
+ - Use semantic commit types so semantic-release can create releases:
14
+ - Minor updates use `feat` → triggers a minor release.
15
+ - Major updates use `feat!` → triggers a major release.
16
+ - This repository uses tilde (`~`) version ranges in `package.json` so minor bumps are treated as out-of-range and will trigger Renovate PRs.
17
+
18
+ ## semantic-release
19
+ - `@semantic-release/commit-analyzer` and `@semantic-release/release-notes-generator` are configured with the `conventionalcommits` preset in `.releaserc.json`.
20
+ - When Renovate PRs are merged they produce semantic commits which in turn cause semantic-release to publish new package versions according to Conventional Commits.
21
+
22
+ ## Notes for maintainers
23
+ - Dev dependency updates and scheduling are handled by the main Renovate configuration (inherited via `github>optioni/renovate-config`).
24
+ - If you'd like patch updates to be opened instead of ignored, change `renovate.json` packageRules for `patch` updates.
25
+
26
+ ## Files of interest
27
+ - `renovate.json` — Repository Renovate configuration (overrides and grouping for minor/major updates).
28
+ - `.releaserc.json` — semantic-release configuration (conventional commits preset).
29
+ - `package.json` — package metadata and dependency ranges.
@@ -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,11 +1,11 @@
1
1
  {
2
2
  "name": "@juuso.piikkila/eslint-config-typescript",
3
3
  "description": "ESLint config for typescript projects",
4
- "version": "3.0.23",
4
+ "version": "3.2.0",
5
5
  "main": "index.mjs",
6
6
  "author": "Juuso Piikkilä",
7
7
  "license": "MIT",
8
- "packageManager": "yarn@4.9.1",
8
+ "packageManager": "yarn@4.10.3",
9
9
  "type": "module",
10
10
  "publishConfig": {
11
11
  "access": "public"
@@ -14,17 +14,18 @@
14
14
  "lint": "eslint \"configurations/**/*.mjs\" \"eslint.config.mjs\" \"index.mjs\""
15
15
  },
16
16
  "dependencies": {
17
- "eslint": "^9.0.0",
18
- "eslint-config-canonical": "^44.3.43",
19
- "eslint-plugin-vue": "^10.0.0",
20
- "eslint-plugin-vuejs-accessibility": "^2.0.0",
21
- "globals": "^16.0.0",
22
- "vue-eslint-parser": "^10.1.1"
17
+ "eslint": "~9.37.0",
18
+ "eslint-config-canonical": "~45.0.0",
19
+ "eslint-plugin-vue": "~10.5.0",
20
+ "eslint-plugin-vuejs-accessibility": "~2.4.0",
21
+ "globals": "~16.4.0",
22
+ "vue-eslint-parser": "~10.2.0"
23
23
  },
24
24
  "devDependencies": {
25
25
  "@semantic-release/changelog": "^6.0.1",
26
26
  "@semantic-release/git": "^10.0.1",
27
- "conventional-changelog-conventionalcommits": "^8.0.0",
28
- "semantic-release": "^24.0.0"
27
+ "conventional-changelog-conventionalcommits": "^9.0.0",
28
+ "semantic-release": "^24.0.0",
29
+ "typescript": "^5.9.3"
29
30
  }
30
31
  }