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:
parent
bb9d67f1ae
commit
88ae31a6b8
@ -6,7 +6,7 @@
|
||||
"immed": true, // require immediate functions to be wrapped in ( )
|
||||
"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
|
||||
"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
|
||||
//"expr": true, // allow ternery operator syntax...
|
||||
"sub": true // don't warn that foo['bar'] should be written as foo.bar
|
||||
|
25
Gruntfile.js
25
Gruntfile.js
@ -29,19 +29,20 @@ module.exports = function(grunt) {
|
||||
},
|
||||
jshint: {
|
||||
options: {
|
||||
jshintrc:true // Use external file - configured as below...
|
||||
// http://www.jshint.com/docs/options/
|
||||
"asi": true, // allow missing semicolons
|
||||
"curly": true, // require braces
|
||||
"eqnull": true, // ignore ==null
|
||||
"forin": true, // require property filtering in "for in" loops
|
||||
"immed": true, // require immediate functions to be wrapped in ( )
|
||||
"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
|
||||
"loopfunc": true, // allow functions to be defined in loops
|
||||
"sub": true, // don't warn that foo['bar'] should be written as foo.bar
|
||||
//"unused": true, // Check for unused functions
|
||||
//"forin":false, // turn off check for "for (x in y...)"
|
||||
"reporter": require('jshint-stylish')
|
||||
//"asi": true, // allow missing semicolons
|
||||
//"curly": true, // require braces
|
||||
//"eqnull": true, // ignore ==null
|
||||
//"forin": true, // require property filtering in "for in" loops
|
||||
//"immed": true, // require immediate functions to be wrapped in ( )
|
||||
//"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
|
||||
//"loopfunc": true, // allow functions to be defined in loops
|
||||
//"sub": true, // don't warn that foo['bar'] should be written as foo.bar
|
||||
////"unused": true, // Check for unused functions
|
||||
////"forin":false, // turn off check for "for (x in y...)"
|
||||
//"reporter": require('jshint-stylish')
|
||||
},
|
||||
all: {
|
||||
src: ['*/*.js','*/*/*.js'],
|
||||
|
Loading…
Reference in New Issue
Block a user