From: Oleg Gaidarenko Date: Tue, 15 Apr 2014 14:08:18 +0000 (+0400) Subject: Build: Update jscsrc X-Git-Tag: 1.11.1-rc1~5 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=5ac2186903acd9858e1f0e4891e47a244b2303af;p=jquery.git Build: Update jscsrc * Update "grunt-jscs-checker" package * Use ".jscsrc" file instead of old ".jscs.json" * Use jquery preset instead of explicitly defining all the jscs rules (Cherry-picked from b7283d738ec4c2d9d87cb16c32a3209cab567ed1 commit) --- diff --git a/.jscs.json b/.jscs.json deleted file mode 100644 index f2d8a1fb7..000000000 --- a/.jscs.json +++ /dev/null @@ -1,23 +0,0 @@ -{ - "requireCurlyBraces": [ "if", "else", "for", "while", "do" ], - "requireSpaceAfterKeywords": [ "if", "else", "for", "while", "do", "switch", "return" ], - "requireSpacesInFunctionExpression": { - "beforeOpeningCurlyBrace": true - }, - "disallowSpacesInFunctionExpression": { - "beforeOpeningRoundBrace": true - }, - "requireMultipleVarDecl": true, - "requireSpacesInsideObjectBrackets": "all", - "requireSpacesInsideArrayBrackets": "all", - "disallowLeftStickedOperators": [ "?", "-", "/", "*", "=", "==", "===", "!=", "!==", ">", ">=", "<", "<=" ], - "disallowRightStickedOperators": [ "?", "/", "*", ":", "=", "==", "===", "!=", "!==", ">", ">=", "<", "<="], - "requireRightStickedOperators": [ "!" ], - "requireLeftStickedOperators": [ "," ], - "disallowKeywords": [ "with" ], - "disallowMultipleLineBreaks": true, - "disallowKeywordsOnNewLine": [ "else" ], - "requireLineFeedAtFileEnd": true, - - "excludeFiles": [ "src/intro.js", "src/outro.js", "src/sizzle/**/*" ] -} diff --git a/.jscsrc b/.jscsrc new file mode 100644 index 000000000..219398928 --- /dev/null +++ b/.jscsrc @@ -0,0 +1,5 @@ +{ + "preset": "jquery", + + "excludeFiles": [ "src/intro.js", "src/outro.js", "src/sizzle/**/*" ] +} diff --git a/package.json b/package.json index e4970fa78..39c5b22a2 100644 --- a/package.json +++ b/package.json @@ -38,7 +38,7 @@ "grunt-contrib-uglify": "0.3.2", "grunt-contrib-watch": "0.5.3", "grunt-git-authors": "1.2.0", - "grunt-jscs-checker": "0.3.2", + "grunt-jscs-checker": "0.4.1", "grunt-jsonlint": "1.0.4", "gzip-js": "0.3.2", "load-grunt-tasks": "0.3.0",