Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions .eslintignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
lib/
dist/
node_modules/
coverage/
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,9 +37,9 @@ jobs:
id: npm-format-check
run: npm run format:check

# - name: Lint
# id: npm-lint
# run: npm run lint
- name: Lint
id: npm-lint
run: npm run lint

- name: Test
id: npm-ci-test
Expand Down
5 changes: 0 additions & 5 deletions eslint.config.js

This file was deleted.

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
"package": "npx ncc build src/index.ts -o dist --source-map --license licenses.txt",
"package:watch": "npm run package -- --watch",
"test": "npx jest",
"all": "npm run format:write && npm run test && npm run coverage && npm run package"
"all": "npm run format:write && npm run lint && npm run test && npm run coverage && npm run package"
},
"engines": {
"node": ">=21"
Expand All @@ -40,7 +40,7 @@
"@types/node": "^22.10.1",
"@typescript-eslint/parser": "^8.16.0",
"@vercel/ncc": "^0.38.3",
"eslint": "^9.16.0",
"eslint": "^8.0.1",
"eslint-plugin-github": "^5.1.3",
"eslint-plugin-jest": "^28.9.0",
"jest": "^29.7.0",
Expand Down
Loading