Skip to content

Commit

Permalink
feat(deps): Support ESLint 9
Browse files Browse the repository at this point in the history
  • Loading branch information
azu committed Dec 30, 2024
1 parent 201d1a0 commit 22d8fbb
Show file tree
Hide file tree
Showing 7 changed files with 1,285 additions and 1,698 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [ 14, 16 ]
node-version: [ 20, 22 ]
steps:
- name: checkout
uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4
Expand All @@ -15,6 +15,6 @@ jobs:
with:
node-version: ${{ matrix.node-version }}
- name: Install
run: yarn install
run: npm ci
- name: Test
run: yarn test
run: npm test
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ To ignore ESLint parsing errors that cannot be ignored from the config file, you
{
"rules": {
"eslint": {
"configFile": "path/to/.eslintrc"
"configFile": "path/to/.eslintrc",
"ignoreParsingErrors": true
}
}
Expand Down Expand Up @@ -93,7 +93,7 @@ textlint --rule eslint README.md
// Required: path to .eslintrc file
"configFile": "path/to/.eslintrc",
// recognize lang of CodeBlock
"langs": ["js", "javascript", "node", "jsx"]
"langs": ["js", "javascript", "node", "jsx"],
// Ignore ESLint parsing errors
"ignoreParsingErrors": true
}
Expand Down
Loading

0 comments on commit 22d8fbb

Please sign in to comment.