Skip to content

Commit d52db23

Browse files
committed
release: 1.53.2-beta.1
1 parent 142c7ff commit d52db23

File tree

40 files changed

+527
-469
lines changed

40 files changed

+527
-469
lines changed

.github/ISSUE_TEMPLATE/feature_request.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ body:
99
value: |
1010
## Feature Request
1111
12-
# Thank you for suggesting a new feature! Before submitting, please ensure your request meets our contribution guidelines.
12+
Thank you for suggesting a new feature! Before submitting, please ensure your request meets our contribution guidelines.
1313
- type: textarea
1414
id: problem
1515
attributes:

.github/ISSUE_TEMPLATE/rule_request.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ body:
99
value: |
1010
## Rule Request
1111
12-
# Thank you for suggesting a new rule! Before submitting, please ensure your request meets our rule writing standards.
12+
Thank you for suggesting a new rule! Before submitting, please ensure your request meets our rule writing standards.
1313
1414
## References on Rule Design
1515
- [What makes a good rule](https://package.elm-lang.org/packages/jfmengels/elm-review/latest/Review-Rule#what-makes-a-good-rule)
@@ -42,8 +42,6 @@ body:
4242
4343
> A lint rule is an automated communication tool which sends messages to developers who have written patterns your rule wishes to prevent. As all communication, the message is important.
4444
placeholder: |
45-
> A lint rule is an automated communication tool which sends messages to developers who have written patterns your rule wishes to prevent. As all communication, the message is important.
46-
4745
Rule name: [PluginName]/[YourRuleName]
4846
4947
Error message: Briefly and clearly describe the problem

.github/workflows/check-provenance.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,9 @@ permissions:
1313
contents: read
1414
jobs:
1515
check-provenance:
16-
runs-on: ubuntu-latest
16+
runs-on: ubuntu-24.04-arm
1717
steps:
18-
- uses: actions/checkout@v4
18+
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
1919
with:
2020
fetch-depth: 0
2121
- name: Check provenance downgrades

.github/workflows/check.yml

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -13,13 +13,14 @@ jobs:
1313
check:
1414
runs-on: ubuntu-24.04-arm
1515
steps:
16-
- uses: actions/checkout@v4
17-
- name: Setup node@23
18-
uses: actions/setup-node@v4
16+
- name: Setup node@24
17+
uses: actions/setup-node@a0853c24544627f65ddf259abe73b1d18a591444 # v5.0.0
1918
with:
20-
node-version: 23
21-
- name: Enable Corepack
22-
run: corepack enable
19+
node-version: 24
20+
- name: Install pnpm
21+
run: npm install -g pnpm
22+
- name: Checkout repository
23+
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
2324
- name: Install front-end dependencies
2425
run: pnpm install
2526
- name: Build front-end assets

.github/workflows/publish.yml

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -21,14 +21,15 @@ jobs:
2121
contents: read
2222
id-token: write
2323
steps:
24-
- uses: actions/checkout@v4
25-
- name: Setup node@23
26-
uses: actions/setup-node@v4
24+
- name: Setup node@24
25+
uses: actions/setup-node@a0853c24544627f65ddf259abe73b1d18a591444 # v5.0.0
2726
with:
28-
node-version: 23
27+
node-version: 24
2928
registry-url: "https://registry.npmjs.org"
30-
- name: Enable Corepack
31-
run: corepack enable
29+
- name: Install pnpm
30+
run: npm install -g pnpm
31+
- name: Checkout repository
32+
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
3233
- name: Install dependencies
3334
run: pnpm install
3435
- name: Build front-end assets

.github/workflows/test.yml

Lines changed: 12 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -14,24 +14,23 @@ jobs:
1414
test:
1515
runs-on: ubuntu-24.04-arm
1616
steps:
17-
- uses: actions/checkout@v4
18-
- name: Setup node@23
19-
uses: actions/setup-node@v4
17+
- name: Setup node@24
18+
uses: actions/setup-node@a0853c24544627f65ddf259abe73b1d18a591444 # v5.0.0
2019
with:
21-
node-version: 23
22-
- name: Enable Corepack
23-
run: corepack enable
20+
node-version: 24
21+
- name: Install pnpm
22+
run: npm install -g pnpm
23+
- name: Checkout repository
24+
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
2425
- name: Install front-end dependencies
2526
run: pnpm install
2627
- name: Build front-end assets
2728
run: pnpm run build
28-
- name: Test on node@23
29+
- name: Test on node@24
2930
run: pnpm run test
30-
- name: Setup node@18
31-
uses: actions/setup-node@v4
31+
- name: Setup node@20
32+
uses: actions/setup-node@a0853c24544627f65ddf259abe73b1d18a591444 # v5.0.0
3233
with:
33-
node-version: 18
34-
- name: Enable Corepack
35-
run: corepack enable
36-
- name: Test on node@18
34+
node-version: 20
35+
- name: Test on node@20
3736
run: pnpm run test

.pkgs/configs/.gitignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,4 +44,3 @@ stats.html
4444
*.bundled_*.mjs
4545
*.tgz
4646
eslint-results.sarif
47-
.tsup

.pkgs/configs/eslint.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -172,8 +172,8 @@ export const strictTypeChecked = defineConfig([
172172
],
173173
"perfectionist/sort-intersection-types": "off",
174174
"perfectionist/sort-modules": "off",
175-
"perfectionist/sort-named-exports": ["warn", { type: "natural", order: "asc" }],
176-
"perfectionist/sort-named-imports": ["warn", { type: "natural", order: "asc" }],
175+
"perfectionist/sort-named-exports": "off",
176+
"perfectionist/sort-named-imports": "off",
177177
"perfectionist/sort-object-types": [
178178
"warn",
179179
{ ...p11tOptions, ...p11tGroups },

.pkgs/configs/eslint.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -185,8 +185,8 @@ export const strictTypeChecked = defineConfig([
185185
],
186186
"perfectionist/sort-intersection-types": "off",
187187
"perfectionist/sort-modules": "off",
188-
"perfectionist/sort-named-exports": ["warn", { type: "natural", order: "asc" }],
189-
"perfectionist/sort-named-imports": ["warn", { type: "natural", order: "asc" }],
188+
"perfectionist/sort-named-exports": "off",
189+
"perfectionist/sort-named-imports": "off",
190190
"perfectionist/sort-object-types": [
191191
"warn",
192192
{ ...p11tOptions, ...p11tGroups },

.pkgs/configs/package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -19,18 +19,18 @@
1919
"lint:ts": "tsc --noEmit"
2020
},
2121
"dependencies": {
22-
"@eslint/js": "^9.35.0",
23-
"@stylistic/eslint-plugin": "^5.3.1",
22+
"@eslint/js": "^9.36.0",
23+
"@stylistic/eslint-plugin": "^5.4.0",
2424
"eslint-plugin-de-morgan": "^1.3.1",
25-
"eslint-plugin-function": "^0.0.29",
26-
"eslint-plugin-jsdoc": "^59.0.1",
25+
"eslint-plugin-function": "^0.0.30",
26+
"eslint-plugin-jsdoc": "^60.0.0",
2727
"eslint-plugin-perfectionist": "^4.15.0",
2828
"eslint-plugin-regexp": "^2.10.0",
2929
"eslint-plugin-unicorn": "^61.0.2",
3030
"typescript-eslint": "^8.44.0"
3131
},
3232
"peerDependencies": {
33-
"eslint": "^9.35.0",
33+
"eslint": "^9.36.0",
3434
"typescript": "^4.9.5 || ^5.4.5"
3535
}
3636
}

0 commit comments

Comments
 (0)