diff options
author | Shin'ya Ueoka <ueokande@i-beam.org> | 2019-12-03 18:18:59 +0900 |
---|---|---|
committer | Shin'ya Ueoka <ueokande@i-beam.org> | 2019-12-03 18:34:48 +0900 |
commit | 00ccdc5ad71233795f3d6c35b98a5b33974511e1 (patch) | |
tree | 54b36064b01686a9a52e48fd68dd10f4d2376386 | |
parent | 776977e0dcaf47a81054dcc81d76722ada71f9eb (diff) |
Exclude .js files from eslint targets
-rw-r--r-- | package.json | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/package.json b/package.json index ff6ecdc..381bb7d 100644 --- a/package.json +++ b/package.json @@ -6,7 +6,7 @@ "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 .js,.jsx,.ts,.tsx src", + "lint": "eslint --ext .ts,.tsx src", "type-checks": "tsc --noEmit", "test": "karma start", "test:e2e": "mocha --timeout 10000 --retries 10 --require ts-node/register --extension ts e2e" |