Commit 4db5164d authored by Chris Rebert's avatar Chris Rebert
Browse files

Merge pull request #12950 from twbs/jscs-null-trick

re-enable requireCamelCaseOrUpperCaseIdentifiers in JSCS
parents dec1c21e 310465b0
3 merge requests!28721Hot test,!22103test,!25326Adjust examples
Showing with 2 additions and 0 deletions
+2 -0
...@@ -66,6 +66,7 @@ module.exports = function (grunt) { ...@@ -66,6 +66,7 @@ module.exports = function (grunt) {
}, },
grunt: { grunt: {
options: { options: {
'requireCamelCaseOrUpperCaseIdentifiers': null,
'requireParenthesesAroundIIFE': true 'requireParenthesesAroundIIFE': true
}, },
src: '<%= jshint.grunt.src %>' src: '<%= jshint.grunt.src %>'
......
...@@ -8,6 +8,7 @@ ...@@ -8,6 +8,7 @@
"disallowSpaceAfterPrefixUnaryOperators": ["++", "--", "+", "-", "~"], "disallowSpaceAfterPrefixUnaryOperators": ["++", "--", "+", "-", "~"],
"disallowSpaceBeforePostfixUnaryOperators": ["++", "--"], "disallowSpaceBeforePostfixUnaryOperators": ["++", "--"],
"disallowTrailingWhitespace": true, "disallowTrailingWhitespace": true,
"requireCamelCaseOrUpperCaseIdentifiers": true,
"requireLeftStickedOperators": [","], "requireLeftStickedOperators": [","],
"requireLineFeedAtFileEnd": true, "requireLineFeedAtFileEnd": true,
"requireRightStickedOperators": ["!"], "requireRightStickedOperators": ["!"],
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment