Skip to content
Snippets Groups Projects
Commit 152a8aeb authored by Sascha Herzinger's avatar Sascha Herzinger
Browse files

fixed .jshintrc

parent dac6636a
No related branches found
No related tags found
2 merge requests!630WIP: Resolve "The privileges of a new user are not saved in some cases",!589Feature error reporting
{ {
"node": true, "node": true,
"browser": true, "browser": true,
"es5": true, "mocha": true,
"esnext": true, "jquery": true,
"bitwise": true, "es5": true,
"camelcase": true, "esnext": true,
"curly": true, "bitwise": true,
"eqeqeq": true, "camelcase": true,
"immed": true, "curly": true,
"latedef": true, "eqeqeq": true,
// skip warnings about breaking lines "immed": true,
"laxbreak": true, "latedef": true,
"newcap": true, "laxbreak": true,
"noarg": true, "newcap": true,
"regexp": true, "noarg": true,
"undef": true, "undef": true,
"unused": true, "unused": true,
"strict": true, "strict": true,
// suppresses warnings about using [] notation when it can be expressed in "sub": true,
// dot notation: person['name'] vs. person.name. "trailing": true,
"sub": true, "smarttabs": true,
"trailing": true,
"smarttabs": true, "globals": {
"alert": false,
"globals" : { "testDiv": false,
"helper": false,
"alert" : false, "ServerConnector": false,
"google": false,
/* "Promise": true
* custom test params }
*/
"testDiv" : false, }
"helper" : false,
/* MOCHA */
"describe" : false,
"it" : false,
"before" : false,
"beforeEach" : false,
"after" : false,
"afterEach" : false,
/* minerva globals */
"ServerConnector" : false,
"google" : false,
/* jQuery */
"$" : false,
"jQuery" : false,
/* bluebird promise */
"Promise" : true
},
"predef": [ "-Promise" ]
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment