We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3a3ae79 commit 3572c9eCopy full SHA for 3572c9e
2 files changed
.github/workflows/lint.yml
@@ -24,4 +24,4 @@ jobs:
24
run: npm ci
25
26
- name: Lint
27
- run: npm run xo
+ run: npm run lint
package.json
@@ -17,8 +17,9 @@
17
},
18
"scripts": {
19
"mocha": "mocha",
20
- "xo": "xo",
21
- "test": "npm run xo && npm run mocha",
+ "lint": "xo",
+ "fix": "xo --fix",
22
+ "test": "npm run lint && npm run mocha",
23
"test:grunt": "grunt ci --force",
"test:ci": "npm run mocha && npm run test:grunt",
"test:coverage": "c8 npm run test:ci"
0 commit comments