Skip to content

Commit a641331

Browse files
committed
fixup! 4c8f72e
1 parent d58127b commit a641331

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

package.json

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -35,9 +35,11 @@
3535
"coverage:ci": "nyc report --reporter=text-lcov | coveralls",
3636
"precoverage": "npm test",
3737
"coverage": "open coverage/index.html",
38-
"lint": "tslint -c tslint.full.json --project tsconfig.json --type-check",
39-
"lint:fix": "npm run lint -- --fix",
40-
"prettier:cli": "prettier **/*.ts",
38+
"lint": "npm run prettier:check && npm run tslint",
39+
"lint:fix": "npm run prettier:fix && npm run tslint:fix",
40+
"tslint": "tslint -c tslint.full.json --project tsconfig.json --type-check",
41+
"tslint:fix": "npm run lint -- --fix",
42+
"prettier:cli": "prettier \"**/*.ts\"",
4143
"prettier:check": "npm run prettier:cli -- -l",
4244
"prettier:fix": "npm run prettier:cli -- --write",
4345
"clean": "lerna run --loglevel=silent clean",
@@ -46,7 +48,7 @@
4648
"pretest": "npm run build:current",
4749
"test": "nyc npm run mocha",
4850
"mocha": "mocha --opts test/mocha.opts \"packages/*/test/**/*.ts\"",
49-
"posttest": "npm run lint && npm run prettier:check"
51+
"posttest": "npm run lint"
5052
},
5153
"nyc": {
5254
"include": [

0 commit comments

Comments
 (0)