Skip to content

Commit 0959946

Browse files
committed
npm: rename script to lint
1 parent cbe0bac commit 0959946

File tree

1 file changed

+5
-6
lines changed

1 file changed

+5
-6
lines changed

package.json

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,12 @@
1111
"test": "jest --onlyChanged",
1212
"test-unit": "jest .",
1313
"test-unit-ci": "jest . --ci",
14-
"test-unit-changed": "npm test",
15-
"test-style": "ts-standard .",
16-
"test-node-workflow": "concurrently \"npm run test-style\" \"npm run test-unit-ci\"",
17-
"test-all": "concurrently \"npm run test-style\" \"npm run test-unit\"",
14+
"test-node-workflow": "concurrently \"npm run lint\" \"npm run test-unit-ci\"",
15+
"test-all": "concurrently \"npm run lint\" \"npm run test-unit\"",
1816
"test-coverage": "jest . --coverage",
19-
"fix-style": "ts-standard . --fix",
20-
"pre-push": "concurrently \"npm run fix-style\" \"npm run test-unit\"",
17+
"lint": "ts-standard .",
18+
"lint-fix": "ts-standard . --fix",
19+
"pre-push": "concurrently \"npm run lint\" \"npm run test-unit\"",
2120
"prepare": "husky install"
2221
},
2322
"repository": {

0 commit comments

Comments
 (0)