Exempt Closure part of Gruntfile from requireCamelCaseOrUpperCaseIdentifiers

This allows `grunt jscs:grunt` to succeed.
This commit is contained in:
Chris Rebert 2015-02-16 17:38:54 -08:00
parent 1daca5ac5c
commit cdd287da0d
1 changed files with 2 additions and 0 deletions

View File

@ -131,6 +131,7 @@ module.exports = function (grunt) {
checkModified: false,
compilerOpts: {
// jscs:disable requireCamelCaseOrUpperCaseIdentifiers
// jscomp_warning: 'reportUnknownTypes', someday - maybe we will get to 100% typed, this helps track those down
compilation_level: 'ADVANCED_OPTIMIZATIONS',
warning_level: 'verbose',
@ -139,6 +140,7 @@ module.exports = function (grunt) {
'"<%= banner %><%= jqueryCheck %><%= jqueryVersionCheck %>'
+ '(function($){%output%})(jQuery);"',
externs: 'js/externs/*.js'
// jscs:enable requireCamelCaseOrUpperCaseIdentifiers
},
execOpts: {