2021-01-27 11:53:13 +03:00
|
|
|
{
|
2021-02-05 18:30:23 +03:00
|
|
|
"parser": "@babel/eslint-parser",
|
|
|
|
"parserOptions": {
|
|
|
|
"babelOptions": {
|
|
|
|
"configFile": "./.babelrc"
|
|
|
|
},
|
|
|
|
"ecmaVersion": 2018
|
|
|
|
},
|
|
|
|
"plugins": ["@babel"],
|
|
|
|
"extends": [
|
|
|
|
"airbnb-base",
|
|
|
|
"plugin:jest/recommended",
|
|
|
|
"plugin:jsdoc/recommended"
|
|
|
|
],
|
|
|
|
"env": {
|
|
|
|
"browser": true,
|
|
|
|
"es6": true,
|
|
|
|
"es2017": true
|
|
|
|
},
|
|
|
|
"rules": {
|
|
|
|
"no-underscore-dangle": "off",
|
|
|
|
"no-param-reassign": "off",
|
|
|
|
"max-classes-per-file": "off",
|
|
|
|
"prefer-promise-reject-errors": "off",
|
|
|
|
"class-methods-use-this": "off"
|
|
|
|
}
|
2021-01-27 11:53:13 +03:00
|
|
|
}
|