2020-01-29 20:49:35 +00:00
|
|
|
{
|
|
|
|
"parser": "babel-eslint",
|
|
|
|
"env": {
|
|
|
|
"node": true,
|
|
|
|
"es6": true,
|
|
|
|
"jest": true
|
|
|
|
},
|
|
|
|
"parserOptions": {
|
|
|
|
"ecmaVersion": 2020,
|
|
|
|
"ecmaFeatures": {
|
|
|
|
"impliedStrict": true
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"extends": ["airbnb", "plugin:unicorn/recommended", "prettier"],
|
|
|
|
"plugins": ["react", "jsx-a11y", "import", "prettier", "flowtype", "unicorn"],
|
|
|
|
"settings": { "react": { "version": "latest" } },
|
|
|
|
"rules": {
|
|
|
|
"prettier/prettier": "error",
|
2021-02-27 18:13:19 +00:00
|
|
|
"import/no-extraneous-dependencies": 0,
|
|
|
|
"no-underscore-dangle": 0
|
2020-01-29 20:49:35 +00:00
|
|
|
}
|
|
|
|
}
|