aboutsummaryrefslogtreecommitdiffstats
path: root/webapp/.angular-cli.json
diff options
context:
space:
mode:
authorSebastien Douheret <sebastien.douheret@iot.bzh>2018-06-20 14:56:09 +0200
committerSebastien Douheret <sebastien.douheret@iot.bzh>2018-06-20 14:56:12 +0200
commitc8ca55dc8dbb3da11fab597aec83518f71967d4b (patch)
tree3e0dc51a8eda13fee0389f53e1773ae990a45e79 /webapp/.angular-cli.json
parentc2d621f58c1446579961bac245bc6376a02efe63 (diff)
Fix invalid linter conf and fix reported lint errors
Change-Id: I57f83de18965f085ce1f51d5ae4d018b542edc4e Signed-off-by: Sebastien Douheret <sebastien.douheret@iot.bzh>
Diffstat (limited to 'webapp/.angular-cli.json')
-rw-r--r--webapp/.angular-cli.json10
1 files changed, 6 insertions, 4 deletions
diff --git a/webapp/.angular-cli.json b/webapp/.angular-cli.json
index 9aa0157..e257100 100644
--- a/webapp/.angular-cli.json
+++ b/webapp/.angular-cli.json
@@ -47,14 +47,16 @@
},
"lint": [
{
- "files": "src/**/*.ts",
- "project": "src/tsconfig.app.json"
+ "project": "src/tsconfig.app.json",
+ "exclude": "**/node_modules/**"
},
{
- "project": "src/tsconfig.spec.json"
+ "project": "src/tsconfig.spec.json",
+ "exclude": "**/node_modules/**"
},
{
- "project": "e2e/tsconfig.e2e.json"
+ "project": "e2e/tsconfig.e2e.json",
+ "exclude": "**/node_modules/**"
}
],
"test": {