git2prov
Version:
Unleash the potential of Git in the new W3C standard for provenance.
19 lines (18 loc) • 732 B
Plain Text
{
"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
}
}