Skip to content

Commit

Permalink
fix(development): fix tslint exclude node_modules [skip ci] (airyroom…
Browse files Browse the repository at this point in the history
  • Loading branch information
alvinkl authored Mar 26, 2019
1 parent 08f42ff commit 68b121a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
"watch": "lerna --stream --parallel --no-bail run watch",
"clean:lib": "find packages -name lib -exec rm -rf {} +",
"clean": "yarn lerna clean -y && rm -rf @types node_modules && yarn clean:lib",
"ts:lint": "tslint -c tslint.json 'packages/**/**.ts'",
"ts:lint": "tslint -c tslint.json 'packages/**/**.ts' --exclude \"node_modules/**/*.{j,t}s\" --exclude \"**/node_modules/**/*.{j,t}s\"",
"lint": "yarn ts:lint",
"pretty:fix": "prettier --config-precedence file-override --config .prettierrc --write 'packages/**/**+(.jsx|.tsx|.js|.ts)'",
"test": "jest --config ./setup-test/jest.config.js --coverage",
Expand Down

0 comments on commit 68b121a

Please sign in to comment.