2018-04-18 10:09:59 -07:00
|
|
|
{
|
|
|
|
"env": {
|
2019-03-09 13:58:17 -07:00
|
|
|
"jest/globals": true,
|
2018-10-07 12:46:54 -07:00
|
|
|
"es6": true,
|
2018-04-18 10:09:59 -07:00
|
|
|
"node": true
|
|
|
|
},
|
2019-03-09 13:58:17 -07:00
|
|
|
"extends": ["eslint:recommended", "google", "plugin:jest/recommended", "plugin:jest/style"],
|
2018-04-18 10:09:59 -07:00
|
|
|
"parserOptions": {
|
2018-09-20 12:42:50 -07:00
|
|
|
"ecmaVersion": 2018,
|
2018-04-18 10:09:59 -07:00
|
|
|
"sourceType": "module"
|
|
|
|
},
|
|
|
|
"rules": {
|
2018-05-17 08:20:46 -07:00
|
|
|
"require-jsdoc": "off",
|
|
|
|
"indent": ["error", 4],
|
2019-06-23 07:10:44 -07:00
|
|
|
"max-len": ["error", { "code": 120 }],
|
|
|
|
"no-prototype-builtins": "off"
|
2018-08-15 13:19:54 -07:00
|
|
|
},
|
|
|
|
"plugins": [
|
2019-03-09 13:58:17 -07:00
|
|
|
"jest"
|
2018-08-15 13:19:54 -07:00
|
|
|
]
|
2018-05-17 08:20:46 -07:00
|
|
|
}
|