purescript-indexed-DB/.eslintrc

23 lines
435 B
Plaintext
Raw Normal View History

2017-06-22 15:20:17 +03:00
{
"extends": "airbnb",
"env": {
"commonjs": true
},
"parserOptions": {
"ecmaVersion": 5
},
2017-06-22 15:20:17 +03:00
"globals": {
"indexedDB": true,
"PS": true
},
"rules": {
"indent": ["error", 4],
"no-param-reassign": 0,
"import/no-unresolved": 0,
"no-underscore-dangle": 0,
"prefer-template": 0,
"object-shorthand": 0,
"no-var": 0
2017-06-22 15:20:17 +03:00
}
}