purescript-indexedDB/.eslintrc
2017-06-29 15:41:30 +02:00

25 lines
512 B
Plaintext

{
"extends": "airbnb",
"env": {
"commonjs": true
},
"parserOptions": {
"ecmaVersion": 5
},
"globals": {
"indexedDB": true,
"IDBKeyRange": true,
"PS": true
},
"rules": {
"import/no-extraneous-dependencies": 0,
"import/no-unresolved": 0,
"indent": ["error", 4],
"no-param-reassign": 0,
"no-underscore-dangle": 0,
"no-var": 0,
"object-shorthand": 0,
"prefer-template": 0
}
}