mirror of
https://github.com/atlanticbiomedical/biomedjs.git
synced 2025-07-02 00:47:26 -04:00
25 lines
413 B
Plaintext
25 lines
413 B
Plaintext
{
|
|
// Enforcing options
|
|
"eqeqeq": false,
|
|
"forin": true,
|
|
"indent": 4,
|
|
"noarg": true,
|
|
"undef": true,
|
|
"trailing": true,
|
|
"evil": true,
|
|
"laxcomma": true,
|
|
|
|
// Relaxing options
|
|
"onevar": false,
|
|
"asi": false,
|
|
"eqnull": true,
|
|
"expr": false,
|
|
"loopfunc": true,
|
|
"sub": true,
|
|
"browser": true,
|
|
"node": true,
|
|
"globals": {
|
|
"define": true
|
|
}
|
|
}
|