Extends .jscsrc to ignore 3rd party files

Adds a few files that should be skipped to the .jscsrc, since they are
beyond our control (external libs, generated coverage reports etc.)

This also reduces the error count to around 2k

Closes-Bug: 1463791
Change-Id: Iac87e41edd797c2a8318dcaceefe0651bd22dd61
This commit is contained in:
Rob Cresswell 2015-06-10 12:29:23 +01:00 committed by Richard Jones
parent bd80fb930b
commit fda1062195
1 changed files with 6 additions and 2 deletions

View File

@ -1,7 +1,11 @@
{
"excludeFiles": [
".venv/**",
"bower_components/**",
"horizon/.coverage-karma/**",
"lib/**",
"node_modules/**",
"bower_components/**"
"openstack_dashboard/.coverage-karma/**"
],
"requireCurlyBraces": [
"if",
@ -51,4 +55,4 @@
"disallowMultipleLineBreaks": true,
"disallowTrailingComma": true,
"requireParenthesesAroundIIFE": true
}
}