d36a2ff9ee
- Also fixes a few JSHint warnings in files app - Added "global" comment on top of files app to suppress warning and also inform devs about what globals are use
28 lines
442 B
Text
28 lines
442 B
Text
{
|
|
"camelCase": true,
|
|
"eqeqeq": true,
|
|
"immed": true,
|
|
"latedef": false,
|
|
"noarg": true,
|
|
"nonbsp": true,
|
|
"undef": true,
|
|
"unused": true,
|
|
"trailing": true,
|
|
"maxparams": 5,
|
|
"curly": true,
|
|
"jquery": true,
|
|
"maxlen": 80,
|
|
"indent": 4,
|
|
"browser": true,
|
|
"globals": {
|
|
"console": true,
|
|
"it": true,
|
|
"itx": true,
|
|
"expect": true,
|
|
"describe": true,
|
|
"beforeEach": true,
|
|
"afterEach": true,
|
|
"sinon": true,
|
|
"fakeServer": true
|
|
}
|
|
}
|