Skip to content
Snippets Groups Projects
Commit 05683569 authored by Sascha Herzinger's avatar Sascha Herzinger Committed by Piotr Gawron
Browse files

fixed .jshintrc

parent 2c97f2b2
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,
"browser": true,
"es5": true,
"esnext": true,
"bitwise": true,
"camelcase": true,
"curly": true,
"eqeqeq": true,
"immed": true,
"latedef": true,
// skip warnings about breaking lines
"laxbreak": true,
"newcap": true,
"noarg": true,
"regexp": true,
"undef": true,
"unused": true,
"strict": true,
// suppresses warnings about using [] notation when it can be expressed in
// dot notation: person['name'] vs. person.name.
"sub": true,
"trailing": true,
"smarttabs": true,
"globals" : {
"alert" : false,
/*
* 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" ]
}
{
"node": true,
"browser": true,
"mocha": true,
"jquery": true,
"es5": true,
"esnext": true,
"bitwise": true,
"camelcase": true,
"curly": true,
"eqeqeq": true,
"immed": true,
"latedef": true,
"laxbreak": true,
"newcap": true,
"noarg": true,
"undef": true,
"unused": true,
"strict": true,
"sub": true,
"trailing": true,
"smarttabs": true,
"globals": {
"alert": false,
"testDiv": false,
"helper": false,
"ServerConnector": false,
"google": false,
"Promise": true
}
}
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