62efa05798
refs #3795 - updates all dev dependencies to their latest version number - jshint now complains about the Promise global, removed it from predef in lieu of a better solution - changes in should require minor updates to the tests - tests are passing and all major grunt commands appear to work: clean, init, prod, validate and release
28 lines
560 B
Plaintext
28 lines
560 B
Plaintext
{
|
|
"node": true,
|
|
"browser": false,
|
|
"nomen": false,
|
|
"strict": false,
|
|
"sub": true,
|
|
"eqeqeq": true,
|
|
"laxbreak": true,
|
|
"bitwise": true,
|
|
"curly": true,
|
|
"forin": true,
|
|
"immed": true,
|
|
"latedef": true,
|
|
"newcap": true,
|
|
"noarg": true,
|
|
"noempty": true,
|
|
"nonew": true,
|
|
"plusplus": true,
|
|
"regexp": true,
|
|
"undef": true,
|
|
"unused": true,
|
|
"trailing": true,
|
|
"indent": 4,
|
|
"onevar": true,
|
|
"white": true,
|
|
"predef": [ "-Promise" ]
|
|
}
|