Skip to content

Commit

Permalink
refactor(package): run formatter before lint
Browse files Browse the repository at this point in the history
  • Loading branch information
Hotell committed Feb 27, 2017
1 parent 6c68acd commit 36aebbe
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions package.json
Expand Up @@ -21,8 +21,8 @@
"ts:lint:fix": "npm run ts:lint -- --fix",
"ts:format": "tsfmt --verify",
"ts:format:fix": "tsfmt -r",
"ts:style": "npm run ts:lint && npm run ts:format",
"ts:style:fix": "npm run ts:lint:fix && npm run ts:format:fix",
"ts:style": "npm run ts:format && npm run ts:lint",
"ts:style:fix": "npm run ts:format:fix && npm run ts:lint:fix",
"verify": "npm run ts:style && npm test",
"commit": "git-cz",
"commitmsg": "validate-commit-msg",
Expand Down

0 comments on commit 36aebbe

Please sign in to comment.