Skip to content

Commit

Permalink
chore: fix lint config (#339)
Browse files Browse the repository at this point in the history
  • Loading branch information
ota-meshi committed May 7, 2024
1 parent ff33b97 commit ef232e1
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 9 deletions.
12 changes: 3 additions & 9 deletions .github/workflows/NodeCI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,8 @@ jobs:
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
- name: Use Node.js 14
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version: 14
- name: Install Packages
run: npm install
- name: Test
Expand All @@ -34,10 +32,8 @@ jobs:
runs-on: macos-latest
steps:
- uses: actions/checkout@v4
- name: Use Node.js 14
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version: 14
- name: Install Packages
run: npm install
- name: Test
Expand All @@ -46,10 +42,8 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Use Node.js 14
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version: 14
- name: Install Packages
run: npm install
- name: Test
Expand Down
1 change: 1 addition & 0 deletions docs/.vitepress/.eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,6 @@ module.exports = {
rules: {
"require-jsdoc": "off",
"n/file-extension-in-import": "off",
"n/no-unsupported-features/node-builtins": "off",
},
};

0 comments on commit ef232e1

Please sign in to comment.