mirror of
https://github.com/finos/SymphonyElectron.git
synced 2024-11-22 08:57:00 -06:00
32 lines
571 B
Plaintext
32 lines
571 B
Plaintext
{
|
|
"extends": [
|
|
"airbnb-base/rules/best-practices",
|
|
"airbnb-base/rules/errors",
|
|
"airbnb-base/rules/node",
|
|
"airbnb-base/rules/strict",
|
|
"airbnb-base/rules/variables"
|
|
],
|
|
"rules": {
|
|
"comma-dangle": 0,
|
|
"vars-on-top": 0,
|
|
"one-var": 0,
|
|
"indent": [ 2, 4, {
|
|
"SwitchCase": 1
|
|
} ],
|
|
"space-in-parens": 0,
|
|
"func-names" : 0,
|
|
"eol-last": 0,
|
|
"no-use-before-define": 0,
|
|
"strict": 0
|
|
},
|
|
"env": {
|
|
"browser": true,
|
|
"node": true,
|
|
"es6": true
|
|
},
|
|
"globals": {
|
|
"SYM_API": true,
|
|
"ssf": true
|
|
}
|
|
}
|