Skip to content

Commit

Permalink
Chore(system-tests): extend script for style checking
Browse files Browse the repository at this point in the history
NDISC-80
  • Loading branch information
weilbith committed Dec 20, 2023
1 parent bf126fb commit 7280e95
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions system-tests/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@
"eslint:fix": "f() { eslint --fix --max-warnings=0 ${@:-.}; }; f",
"prettier:check": "f() { prettier --check ${@:-.}; }; f",
"prettier:fix": "f() { prettier --write ${@:-.}; }; f",
"style:check": "f() { npm run prettier:check $@ }; f",
"style:fix": "f() { npm run prettier:fix $@ }; f"
"style:check": "f() { npm run prettier:check $@ && npm run eslint:check $@; }; f",
"style:fix": "f() { npm run prettier:fix $@ && npm run eslint:fix $@; }; f"
},
"keywords": [],
"author": "",
Expand Down

0 comments on commit 7280e95

Please sign in to comment.