notebook/.eslintrc.json
Grant Nestor a01d470fd8 Disable "comma-dangle" eslint rule
There are commas dangling all over project…
2016-08-12 13:26:57 -07:00

14 lines
242 B
JSON

{
"parserOptions": {
"ecmaVersion": 6,
"sourceType": "module"
},
"rules": {
"semi": 1,
"no-cond-assign": 2,
"no-debugger": 2,
"comma-dangle": 0,
"no-unreachable" : 2
}
}