Skip to content
This repository was archived by the owner on May 14, 2024. It is now read-only.

Commit 0598cb3

Browse files
committed
fix with npm run lint
1 parent 2489d87 commit 0598cb3

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -44,12 +44,12 @@
4444
"test:watch": "tap -n -w --no-coverage-report",
4545
"test:integration": "tap --no-cov 'test-integration/**/*.test.js'",
4646
"test:integration:local": "docker-compose up -d && npm run test:integration && docker-compose down",
47-
"lint": "eslint .",
48-
"lint:ci": "npm run lint"
47+
"lint": "eslint . --fix",
48+
"lint:ci": "eslint ."
4949
},
5050
"husky": {
5151
"hooks": {
52-
"pre-commit": "npm run lint && npm run test"
52+
"pre-commit": "npm run lint:ci && npm run test"
5353
}
5454
}
5555
}

0 commit comments

Comments
 (0)