lowdefy/.eslintrc
2020-10-08 16:17:58 +02:00

35 lines
1.0 KiB
Plaintext

{
"env": {
"node": true,
"es6": true,
"jest": true,
"browser": true
},
"extends": ["prettier", "eslint:recommended", "plugin:react/recommended"],
"plugins": ["import", "jsx-a11y", "prettier", "react", "react-hooks"],
"rules": {
"prettier/prettier": "error",
"import/no-cycle": "off",
"no-underscore-dangle": "off",
"no-param-reassign": "warn",
"no-nested-ternary": "warn",
"react/display-name": "off",
"react/jsx-filename-extension": "off",
"react/prop-types": "off",
"react/jsx-curly-newline": "off",
"react/jsx-one-expression-per-line": "off",
"react/no-array-index-key": "off",
"react/jsx-wrap-multilines": "off",
"react/jsx-indent": "off",
"react/jsx-props-no-spreading": "warn",
"react/destructuring-assignment": "off",
"jsx-a11y/anchor-is-valid": "off",
"jsx-a11y/click-events-have-key-events": "off",
"jsx-a11y/no-static-element-interactions": "off"
},
"parserOptions": {
"sourceType": "module",
"ecmaVersion": 9
}
}