2019-03-13 09:13:34 +00:00
|
|
|
{
|
2019-04-24 10:56:18 +00:00
|
|
|
"extends": [
|
|
|
|
"airbnb",
|
|
|
|
"plugin:prettier/recommended"
|
|
|
|
],
|
|
|
|
"plugins": [
|
|
|
|
"prettier"
|
|
|
|
],
|
2019-03-13 09:13:34 +00:00
|
|
|
"rules": {
|
2019-04-24 10:56:18 +00:00
|
|
|
"prettier/prettier": "error",
|
|
|
|
"func-names": "off",
|
|
|
|
"eqeqeq": "off",
|
|
|
|
"class-methods-use-this": "off"
|
2019-03-13 09:13:34 +00:00
|
|
|
},
|
|
|
|
"env": {
|
2019-03-14 18:58:19 +00:00
|
|
|
"browser": true,
|
|
|
|
"es6": true,
|
|
|
|
"jest": true
|
|
|
|
},
|
|
|
|
"parserOptions": {
|
|
|
|
"ecmaVersion": 9
|
2019-03-13 09:13:34 +00:00
|
|
|
}
|
2019-04-24 10:56:18 +00:00
|
|
|
}
|