aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorShin'ya Ueoka <ueokande@i-beam.org>2019-12-22 10:27:50 +0900
committerShin'ya Ueoka <ueokande@i-beam.org>2019-12-22 10:48:39 +0900
commitd72012529bcd820598fa64e1aa20dab1c16acaa5 (patch)
treed59e0fd81ef1d380eab1b2e1cfd8e576304d5441
parente21f9f8733b0894a348831fff02e2d8ab71d3c35 (diff)
Add test sources to lint target
-rw-r--r--package.json4
1 files changed, 2 insertions, 2 deletions
diff --git a/package.json b/package.json
index 0732071..de09a33 100644
--- a/package.json
+++ b/package.json
@@ -6,8 +6,8 @@
"start": "webpack --mode development -w --debug --devtool inline-source-map",
"build": "NODE_ENV=production webpack --mode production --progress --display-error-details --devtool inline-source-map",
"package": "npm run build && script/package",
- "lint": "eslint --ext .ts,.tsx src",
- "lint:fix": "eslint --ext .ts,.tsx src --fix",
+ "lint": "eslint --ext .ts,.tsx .",
+ "lint:fix": "eslint --ext .ts,.tsx . --fix",
"type-checks": "tsc --noEmit",
"test": "karma start",
"test:e2e": "mocha --timeout 10000 --retries 10 --require ts-node/register --extension ts e2e"