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

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

re-enable requireCamelCaseOrUpperCaseIdentifiers in JSCS
parents dec1c21e 310465b0
...@@ -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": ["!"],
......
Markdown is supported
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