Skip to content

Commit 73b964a

Browse files
authored
Update to typescript-eslint v7 (#775)
* Update to `typescript-eslint` v7 * Engines override
1 parent 46a2bac commit 73b964a

File tree

6 files changed

+829
-817
lines changed

6 files changed

+829
-817
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
- uses: actions/checkout@v4
1717
- uses: actions/setup-node@v4.0.2
1818
with:
19-
node-version: '16'
19+
node-version: '18'
2020
- run: npm ci --no-progress
2121
- run: npm run lint
2222

@@ -27,7 +27,7 @@ jobs:
2727

2828
strategy:
2929
matrix:
30-
node: [16, 18, 20]
30+
node: [18, 20]
3131
os: [ubuntu-latest, windows-latest]
3232

3333
steps:

.github/workflows/prerelease.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
- uses: actions/checkout@v4
1212
- uses: actions/setup-node@v4.0.2
1313
with:
14-
node-version: '16'
14+
node-version: '18'
1515
registry-url: 'https://registry.npmjs.org'
1616
- run: npm ci --no-progress --production
1717
- run: npm version --no-push --no-git-tag-version --yes ${{ github.event.release.tag_name }}

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
- uses: actions/checkout@v4
1212
- uses: actions/setup-node@v4.0.2
1313
with:
14-
node-version: '16'
14+
node-version: '18'
1515
registry-url: 'https://registry.npmjs.org'
1616
- run: npm ci --no-progress --production
1717
- run: npm version --no-push --no-git-tag-version --yes ${{ github.event.release.tag_name }}

.npmpackagejsonlintrc.json

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
11
{
2-
"extends": "npm-package-json-lint-config-tc"
2+
"extends": "npm-package-json-lint-config-tc",
3+
"rules": {
4+
"valid-values-engines": "off"
5+
}
36
}

0 commit comments

Comments
 (0)