1
0
mirror of https://github.com/node-red/node-red-nodes.git synced 2023-10-10 13:36:58 +02:00

Point Gruntfile to external .jshintrc

This commit is contained in:
dceejay 2015-04-16 11:56:30 +01:00
parent bb9d67f1ae
commit 88ae31a6b8
2 changed files with 14 additions and 13 deletions

View File

@ -6,7 +6,7 @@
"immed": true, // require immediate functions to be wrapped in ( ) "immed": true, // require immediate functions to be wrapped in ( )
"nonbsp": true, // warn on unexpected whitespace breaking chars "nonbsp": true, // warn on unexpected whitespace breaking chars
//"strict": true, // commented out for now as it causes 100s of warnings, but want to get there eventually //"strict": true, // commented out for now as it causes 100s of warnings, but want to get there eventually
"unused": true, // Check for unused functions and variables //"unused": true, // Check for unused functions and variables
"loopfunc": true, // allow functions to be defined in loops "loopfunc": true, // allow functions to be defined in loops
//"expr": true, // allow ternery operator syntax... //"expr": true, // allow ternery operator syntax...
"sub": true // don't warn that foo['bar'] should be written as foo.bar "sub": true // don't warn that foo['bar'] should be written as foo.bar

View File

@ -29,19 +29,20 @@ module.exports = function(grunt) {
}, },
jshint: { jshint: {
options: { options: {
jshintrc:true // Use external file - configured as below...
// http://www.jshint.com/docs/options/ // http://www.jshint.com/docs/options/
"asi": true, // allow missing semicolons //"asi": true, // allow missing semicolons
"curly": true, // require braces //"curly": true, // require braces
"eqnull": true, // ignore ==null //"eqnull": true, // ignore ==null
"forin": true, // require property filtering in "for in" loops //"forin": true, // require property filtering in "for in" loops
"immed": true, // require immediate functions to be wrapped in ( ) //"immed": true, // require immediate functions to be wrapped in ( )
"nonbsp": true, // warn on unexpected whitespace breaking chars //"nonbsp": true, // warn on unexpected whitespace breaking chars
//"strict": true, // commented out for now as it causes 100s of warnings, but want to get there eventually ////"strict": true, // commented out for now as it causes 100s of warnings, but want to get there eventually
"loopfunc": true, // allow functions to be defined in loops //"loopfunc": true, // allow functions to be defined in loops
"sub": true, // don't warn that foo['bar'] should be written as foo.bar //"sub": true, // don't warn that foo['bar'] should be written as foo.bar
//"unused": true, // Check for unused functions ////"unused": true, // Check for unused functions
//"forin":false, // turn off check for "for (x in y...)" ////"forin":false, // turn off check for "for (x in y...)"
"reporter": require('jshint-stylish') //"reporter": require('jshint-stylish')
}, },
all: { all: {
src: ['*/*.js','*/*/*.js'], src: ['*/*.js','*/*/*.js'],