Skip to content

Commit 7dc1630

Browse files
committed
chore: version packages for eslint standard/strict split
1 parent f113f21 commit 7dc1630

File tree

10 files changed

+53
-7
lines changed

10 files changed

+53
-7
lines changed

packages/eslint-config-sylph-react/CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# @sylphlab/eslint-config-sylph-react
22

3+
## 7.0.0
4+
5+
### Patch Changes
6+
7+
- Updated dependencies
8+
- @sylphlab/eslint-config-sylph@3.4.0
9+
310
## 6.0.0
411

512
### Patch Changes

packages/eslint-config-sylph-react/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@sylphlab/eslint-config-sylph-react",
3-
"version": "6.0.0",
3+
"version": "7.0.0",
44
"description": "React ESLint Flat Config for SylphLab projects.",
55
"main": "./dist/index.js",
66
"types": "./dist/index.d.ts",
@@ -60,7 +60,7 @@
6060
},
6161
"peerDependencies": {
6262
"@eslint/js": "^9.24.0",
63-
"@sylphlab/eslint-config-sylph": "^3.3.0",
63+
"@sylphlab/eslint-config-sylph": "^3.4.0",
6464
"@typescript-eslint/eslint-plugin": "^8.29.1",
6565
"@typescript-eslint/parser": "^8.29.1",
6666
"eslint": "^9.24.0",

packages/eslint-config-sylph-rn/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# @sylphlab/eslint-config-sylph-rn
22

3+
## 7.0.0
4+
5+
### Patch Changes
6+
7+
- @sylphlab/eslint-config-sylph-react@7.0.0
8+
39
## 6.0.0
410

511
### Patch Changes

packages/eslint-config-sylph-rn/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@sylphlab/eslint-config-sylph-rn",
3-
"version": "6.0.0",
3+
"version": "7.0.0",
44
"description": "React Native ESLint Flat Config for SylphLab projects.",
55
"main": "./dist/index.js",
66
"types": "./dist/index.d.ts",
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
# @sylphlab/eslint-config-sylph-strict
2+
3+
## 0.2.0
4+
5+
### Minor Changes
6+
7+
- feat: Split ESLint config into Standard and Strict tiers
8+
9+
- Modified `@sylphlab/eslint-config-sylph` to be the 'Standard' tier, relaxing some strict rules (e.g., `no-explicit-any`, complexity/length limits set to `warn`, removed `functional` plugin).
10+
- Added new `@sylphlab/eslint-config-sylph-strict` package which extends the Standard tier and re-enforces stricter rules (limits as `error`, `functional` plugin included).
11+
- Updated documentation to reflect the two tiers.
12+
13+
### Patch Changes
14+
15+
- Updated dependencies
16+
- @sylphlab/eslint-config-sylph@3.4.0

packages/eslint-config-sylph-strict/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@sylphlab/eslint-config-sylph-strict",
3-
"version": "0.1.0",
3+
"version": "0.2.0",
44
"description": "Strict ESLint Flat Configuration for SylphLab TypeScript Projects (Extends Standard)",
55
"author": "Kyle Tse <[email protected]> (https://kylet.se)",
66
"license": "MIT",

packages/eslint-config-sylph-vue/CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# @sylphlab/eslint-config-sylph-vue
22

3+
## 7.0.0
4+
5+
### Patch Changes
6+
7+
- Updated dependencies
8+
- @sylphlab/eslint-config-sylph@3.4.0
9+
310
## 6.0.0
411

512
### Patch Changes

packages/eslint-config-sylph-vue/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@sylphlab/eslint-config-sylph-vue",
3-
"version": "6.0.0",
3+
"version": "7.0.0",
44
"description": "Vue 3 ESLint Flat Config for SylphLab projects.",
55
"main": "./dist/index.js",
66
"types": "./dist/index.d.ts",
@@ -61,7 +61,7 @@
6161
},
6262
"peerDependencies": {
6363
"@eslint/js": "^9.24.0",
64-
"@sylphlab/eslint-config-sylph": "^3.3.0",
64+
"@sylphlab/eslint-config-sylph": "^3.4.0",
6565
"@typescript-eslint/eslint-plugin": "^8.29.1",
6666
"@typescript-eslint/parser": "^8.29.1",
6767
"eslint": "^9.24.0",

packages/eslint-config-sylph/CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,15 @@
11
# @sylphlab/eslint-config-sylph
22

3+
## 3.4.0
4+
5+
### Minor Changes
6+
7+
- feat: Split ESLint config into Standard and Strict tiers
8+
9+
- Modified `@sylphlab/eslint-config-sylph` to be the 'Standard' tier, relaxing some strict rules (e.g., `no-explicit-any`, complexity/length limits set to `warn`, removed `functional` plugin).
10+
- Added new `@sylphlab/eslint-config-sylph-strict` package which extends the Standard tier and re-enforces stricter rules (limits as `error`, `functional` plugin included).
11+
- Updated documentation to reflect the two tiers.
12+
313
## 3.3.0
414

515
### Minor Changes

packages/eslint-config-sylph/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@sylphlab/eslint-config-sylph",
3-
"version": "3.3.0",
3+
"version": "3.4.0",
44
"description": "Strict, AI-optimized ESLint Flat Config for modern TypeScript projects (v9+, TS, Unicorn, Functional, Security, Sonar, Import, Promise, Regexp, Prettier). Core of all SylphLab TypeScript projects.",
55
"main": "./dist/index.js",
66
"types": "./dist/index.d.ts",

0 commit comments

Comments
 (0)