@juuso.piikkila/eslint-config-typescript 3.0.22 → 3.1.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/CHANGELOG.md +12 -0
- package/README.md +29 -0
- package/configurations/base/index.mjs +4 -4
- package/configurations/typescript/index.mjs +3 -3
- package/package.json +9 -9
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,15 @@
|
|
|
1
|
+
## [3.1.0](https://github.com/optioni/eslint-config-typescript/compare/3.0.23...3.1.0) (2025-10-03)
|
|
2
|
+
|
|
3
|
+
### Features
|
|
4
|
+
|
|
5
|
+
* **deps:** update all minor dependency updates ([c85c9b4](https://github.com/optioni/eslint-config-typescript/commit/c85c9b4c3c959aa200b912783ffd4b4720871a58))
|
|
6
|
+
|
|
7
|
+
## [3.0.23](https://github.com/juusopiikkila/eslint-config-typescript/compare/3.0.22...3.0.23) (2025-04-23)
|
|
8
|
+
|
|
9
|
+
### Bug Fixes
|
|
10
|
+
|
|
11
|
+
* try updating imports ([b6550e2](https://github.com/juusopiikkila/eslint-config-typescript/commit/b6550e2051382ef5edd69c554da06cef909fd993))
|
|
12
|
+
|
|
1
13
|
## [3.0.22](https://github.com/juusopiikkila/eslint-config-typescript/compare/3.0.21...3.0.22) (2025-04-14)
|
|
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,15 +1,15 @@
|
|
|
1
1
|
/* eslint-disable import/no-extraneous-dependencies */
|
|
2
2
|
import stylisticPlugin from '@stylistic/eslint-plugin';
|
|
3
|
-
import * as canonical from 'eslint-config-canonical/
|
|
4
|
-
import * as regexp from 'eslint-config-canonical/
|
|
3
|
+
import * as canonical from 'eslint-config-canonical/canonical';
|
|
4
|
+
import * as regexp from 'eslint-config-canonical/regexp';
|
|
5
5
|
import canonicalPlugin from 'eslint-plugin-canonical';
|
|
6
6
|
import importPlugin from 'eslint-plugin-import';
|
|
7
7
|
import perfectionistPlugin from 'eslint-plugin-perfectionist';
|
|
8
8
|
import unicornPlugin from 'eslint-plugin-unicorn';
|
|
9
9
|
|
|
10
10
|
export default [
|
|
11
|
-
canonical.recommended,
|
|
12
|
-
regexp.recommended,
|
|
11
|
+
...canonical.recommended,
|
|
12
|
+
...regexp.recommended,
|
|
13
13
|
{
|
|
14
14
|
files: [
|
|
15
15
|
'**/*.{js,jsx,cjs,mjs,ts,tsx,vue}',
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
/* eslint-disable import/no-extraneous-dependencies */
|
|
2
2
|
import stylisticPlugin from '@stylistic/eslint-plugin';
|
|
3
3
|
import typescriptEslintPlugin from '@typescript-eslint/eslint-plugin';
|
|
4
|
-
import * as typescript from 'eslint-config-canonical/
|
|
5
|
-
import * as typescriptTypeChecking from 'eslint-config-canonical/
|
|
4
|
+
import * as typescript from 'eslint-config-canonical/typescript';
|
|
5
|
+
import * as typescriptTypeChecking from 'eslint-config-canonical/typescript-type-checking';
|
|
6
6
|
|
|
7
7
|
export default [
|
|
8
|
-
typescript.recommended,
|
|
8
|
+
...typescript.recommended,
|
|
9
9
|
{
|
|
10
10
|
files: [
|
|
11
11
|
'**/*.{ts,tsx,vue}',
|
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
|
|
4
|
+
"version": "3.1.0",
|
|
5
5
|
"main": "index.mjs",
|
|
6
6
|
"author": "Juuso Piikkilä",
|
|
7
7
|
"license": "MIT",
|
|
8
|
-
"packageManager": "yarn@4.
|
|
8
|
+
"packageManager": "yarn@4.10.3",
|
|
9
9
|
"type": "module",
|
|
10
10
|
"publishConfig": {
|
|
11
11
|
"access": "public"
|
|
@@ -14,17 +14,17 @@
|
|
|
14
14
|
"lint": "eslint \"configurations/**/*.mjs\" \"eslint.config.mjs\" \"index.mjs\""
|
|
15
15
|
},
|
|
16
16
|
"dependencies": {
|
|
17
|
-
"eslint": "
|
|
18
|
-
"eslint-config-canonical": "
|
|
19
|
-
"eslint-plugin-vue": "
|
|
20
|
-
"eslint-plugin-vuejs-accessibility": "
|
|
21
|
-
"globals": "
|
|
22
|
-
"vue-eslint-parser": "
|
|
17
|
+
"eslint": "~9.36.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": "^
|
|
27
|
+
"conventional-changelog-conventionalcommits": "^9.0.0",
|
|
28
28
|
"semantic-release": "^24.0.0"
|
|
29
29
|
}
|
|
30
30
|
}
|