This repository has been archived on 2023-12-22. You can view files and clone it, but cannot push or open issues or pull requests.
old-monorepo/_Dashboard/.eslintrc

38 lines
683 B
Text
Raw Normal View History

2020-07-30 20:59:37 +02:00
{
"root": true,
"extends": [
"eslint:recommended",
"plugin:react/recommended",
"prettier"
],
"parser": "babel-eslint",
"parserOptions": {
"ecmaFeatures": {
"jsx": true,
"modules": true
}
},
"plugins": [ "react" ],
"rules": {
"prefer-const": "warn",
"no-console": "off",
"no-loop-func": "warn",
"new-cap": "off",
"no-param-reassign": "warn",
"func-names": "off",
"no-unused-expressions" : "error",
"block-scoped-var": "error",
"react/prop-types": "off"
},
"settings": {
"react": {
"pragma": "React",
"version": "16.2"
}
},
"env": {
"es6": true,
"node": true
}
}