28cb7ada3a
No Issue - grunt-contrib-jshint@0.11.0. - remove error about browser global Notification being redefined.
34 lines
649 B
Plaintext
34 lines
649 B
Plaintext
{
|
|
"node": false,
|
|
"browser": true,
|
|
"bitwise": true,
|
|
"curly": true,
|
|
"eqeqeq": true,
|
|
"forin": true,
|
|
"immed": true,
|
|
"latedef": true,
|
|
"newcap": true,
|
|
"noarg": true,
|
|
"noempty": true,
|
|
"nonew": true,
|
|
"plusplus": true,
|
|
"regexp": true,
|
|
"undef": true,
|
|
"unused": true,
|
|
"indent": 4,
|
|
"esnext": true,
|
|
"quotmark": "single",
|
|
"globals": {
|
|
"Ember": true,
|
|
"Em": true,
|
|
"DS": true,
|
|
"$": true,
|
|
"SimpleAuth": true,
|
|
"validator": true,
|
|
"ic": true,
|
|
"NProgress": true,
|
|
"moment": true
|
|
},
|
|
"predef": ["-Notification"]
|
|
}
|