Skip to content

Commit 22d8fbb

Browse files
committed
feat(deps): Support ESLint 9
1 parent 201d1a0 commit 22d8fbb

File tree

7 files changed

+1285
-1698
lines changed

7 files changed

+1285
-1698
lines changed

.github/workflows/test.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ jobs:
66
runs-on: ubuntu-latest
77
strategy:
88
matrix:
9-
node-version: [ 14, 16 ]
9+
node-version: [ 20, 22 ]
1010
steps:
1111
- name: checkout
1212
uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4
@@ -15,6 +15,6 @@ jobs:
1515
with:
1616
node-version: ${{ matrix.node-version }}
1717
- name: Install
18-
run: yarn install
18+
run: npm ci
1919
- name: Test
20-
run: yarn test
20+
run: npm test

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ To ignore ESLint parsing errors that cannot be ignored from the config file, you
3737
{
3838
"rules": {
3939
"eslint": {
40-
"configFile": "path/to/.eslintrc"
40+
"configFile": "path/to/.eslintrc",
4141
"ignoreParsingErrors": true
4242
}
4343
}
@@ -93,7 +93,7 @@ textlint --rule eslint README.md
9393
// Required: path to .eslintrc file
9494
"configFile": "path/to/.eslintrc",
9595
// recognize lang of CodeBlock
96-
"langs": ["js", "javascript", "node", "jsx"]
96+
"langs": ["js", "javascript", "node", "jsx"],
9797
// Ignore ESLint parsing errors
9898
"ignoreParsingErrors": true
9999
}

0 commit comments

Comments
 (0)