Commit cdd287da authored by Chris Rebert's avatar Chris Rebert
Browse files

Exempt Closure part of Gruntfile from requireCamelCaseOrUpperCaseIdentifiers

This allows `grunt jscs:grunt` to succeed.
parent 1daca5ac
Showing with 2 additions and 0 deletions
+2 -0
...@@ -131,6 +131,7 @@ module.exports = function (grunt) { ...@@ -131,6 +131,7 @@ module.exports = function (grunt) {
checkModified: false, checkModified: false,
compilerOpts: { compilerOpts: {
// jscs:disable requireCamelCaseOrUpperCaseIdentifiers
// jscomp_warning: 'reportUnknownTypes', someday - maybe we will get to 100% typed, this helps track those down // jscomp_warning: 'reportUnknownTypes', someday - maybe we will get to 100% typed, this helps track those down
compilation_level: 'ADVANCED_OPTIMIZATIONS', compilation_level: 'ADVANCED_OPTIMIZATIONS',
warning_level: 'verbose', warning_level: 'verbose',
...@@ -139,6 +140,7 @@ module.exports = function (grunt) { ...@@ -139,6 +140,7 @@ module.exports = function (grunt) {
'"<%= banner %><%= jqueryCheck %><%= jqueryVersionCheck %>' '"<%= banner %><%= jqueryCheck %><%= jqueryVersionCheck %>'
+ '(function($){%output%})(jQuery);"', + '(function($){%output%})(jQuery);"',
externs: 'js/externs/*.js' externs: 'js/externs/*.js'
// jscs:enable requireCamelCaseOrUpperCaseIdentifiers
}, },
execOpts: { execOpts: {
......
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