forked from IDLabResearch/Git2PROV
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.jshintrc
More file actions
18 lines (18 loc) · 732 Bytes
/
.jshintrc
File metadata and controls
18 lines (18 loc) · 732 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{
"node": true, // Allow use of node.js globals.
"loopfunc": true, // Allow functions to be defined within loops.
"proto": true, // Allow use of `__proto__`.
"expr": true, // Allow expressions where statements are allowed.
"boss": true, // Allow assignments where expressions are allowed.
"trailing": false, // Do not leave trailing whitespace.
"strict": false, // Do not enforce strict mode.
"undef": true, // Don't use undefined variables.
"unused": true, // Warn about unused variables.
"-W086": true, // Allow fall-through in switch statement.
"globals": { // Allow mocha globals in tests.
"describe": true,
"it": true,
"before": true,
"beforeEach": true
}
}