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