Skip to content
This repository was archived by the owner on Oct 26, 2021. It is now read-only.

Commit a310d55

Browse files
committed
Re-enable jscs checks. Remove expensive checks.
1 parent 2443912 commit a310d55

File tree

3 files changed

+5
-17
lines changed

3 files changed

+5
-17
lines changed

.jscs.json

-17
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,4 @@
11
{
2-
"disallowEmptyBlocks": true,
3-
"disallowKeywords": ["with"],
4-
"disallowLeftStickedOperators": ["?", "+", "-", "/", "*", "=", "==", "===", "!=", "!==", ">", ">=", "<", "<="],
5-
"disallowMixedSpacesAndTabs": true,
6-
"disallowMultipleLineStrings": true,
7-
"disallowRightStickedOperators": ["?", "/", "*", ":", "=", "==", "===", "!=", "!==", ">", ">=", "<", "<="],
8-
"disallowSpaceAfterPrefixUnaryOperators": ["++", "--", "+", "-", "~"],
9-
"disallowSpaceBeforePostfixUnaryOperators": ["++", "--"],
10-
"disallowTrailingWhitespace": true,
11-
"requireCamelCaseOrUpperCaseIdentifiers": true,
12-
"requireLeftStickedOperators": [","],
13-
"requireLineFeedAtFileEnd": true,
14-
"requireRightStickedOperators": ["!"],
15-
"requireSpaceAfterBinaryOperators": ["+", "-", "/", "*", "=", "==", "===", "!=", "!=="],
16-
"requireSpaceAfterKeywords": ["if", "else", "for", "while", "do", "switch", "return", "try", "catch"],
17-
"requireSpaceBeforeBinaryOperators": ["+", "-", "/", "*", "=", "==", "===", "!=", "!=="],
18-
"requireSpacesInFunctionExpression": { "beforeOpeningCurlyBrace": true },
192
"validateIndentation": 2,
203
"validateLineBreaks": "LF",
214
"validateQuoteMarks": "'"

.jscsrc

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"excludeFiles": ["src/plone/app/angularjs/app/bower_components/**"]
3+
}

buildout.cfg

+2
Original file line numberDiff line numberDiff line change
@@ -76,6 +76,8 @@ mode = 755
7676
recipe = plone.recipe.codeanalysis
7777
directory = ${buildout:directory}/src
7878
jshint = True
79+
jscs = True
80+
jscs-exclude = ${buildout:directory}/src/plone/app/angularjs/app/bower_components/*
7981
flake8-exclude = ${buildout:directory}/src/plone/app/angularjs/app/bower_components/*
8082
#imports = True
8183
#utf8-header = True

0 commit comments

Comments
 (0)