Skip to content

Commit

Permalink
Cleanup lint commands
Browse files Browse the repository at this point in the history
  • Loading branch information
mvirgil committed Oct 23, 2024
1 parent 844efe1 commit bdafb92
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
run: npm ci
- name: Build
run: npm run build
- name: Lint check
- name: Lint
run: npm run lint
- name: Unit tests
run: npm run test:unit
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"main": "./dist/index.js",
"scripts": {
"build": "tsc",
"lint": "ESLINT_USE_FLAT_CONFIG=false eslint ./src ./test --max-warnings 0",
"lint": "ESLINT_USE_FLAT_CONFIG=false eslint ./src ./test",
"lint:fix": "ESLINT_USE_FLAT_CONFIG=false eslint ./src ./test --fix",
"test:unit": "glob -c \"TS_NODE_PROJECT=./test/tsconfig.json node --require ts-node/register --test\" \"test/**/*.ts\""
},
Expand Down

0 comments on commit bdafb92

Please sign in to comment.