Fixes these `npm install` warnings:
> deprecated babel-eslint@10.1.0: babel-eslint is now @babel/eslint-parser. This package will no longer receive updates.
> deprecated eslint-loader@4.0.2: This loader has been deprecated. Please use eslint-webpack-plugin
Cherry-picked from starter-kit commit 0e608d562a
67 lines
1.7 KiB
JSON
67 lines
1.7 KiB
JSON
{
|
|
"root": true,
|
|
"env": {
|
|
"browser": true,
|
|
"es6": true
|
|
},
|
|
"extends": ["eslint:recommended", "standard", "standard-react"],
|
|
"parser": "@babel/eslint-parser",
|
|
"parserOptions": {
|
|
"ecmaVersion": "7",
|
|
"ecmaFeatures": {
|
|
"jsx": true
|
|
},
|
|
"sourceType": "module"
|
|
},
|
|
"plugins": ["flowtype", "react", "react-hooks"],
|
|
"rules": {
|
|
"indent": [
|
|
"error",
|
|
4,
|
|
{
|
|
"ObjectExpression": "first",
|
|
"CallExpression": { "arguments": "first" },
|
|
"MemberExpression": 2,
|
|
"ignoredNodes": ["JSXAttribute"]
|
|
}
|
|
],
|
|
"newline-per-chained-call": ["error", { "ignoreChainWithDepth": 2 }],
|
|
"lines-between-class-members": [
|
|
"error",
|
|
"always",
|
|
{ "exceptAfterSingleLine": true }
|
|
],
|
|
"prefer-promise-reject-errors": ["error", { "allowEmptyReject": true }],
|
|
"react/jsx-indent": ["error", 4],
|
|
"semi": ["error", "always", { "omitLastInOneLineBlock": true }],
|
|
|
|
"react-hooks/rules-of-hooks": "error",
|
|
"react-hooks/exhaustive-deps": "error",
|
|
|
|
"camelcase": "off",
|
|
"comma-dangle": "off",
|
|
"curly": "off",
|
|
"jsx-quotes": "off",
|
|
"key-spacing": "off",
|
|
"new-cap": "off",
|
|
"no-console": "off",
|
|
"prefer-const": "off",
|
|
"quotes": "off",
|
|
"react/jsx-closing-bracket-location": "off",
|
|
"react/jsx-curly-spacing": "off",
|
|
"react/jsx-indent-props": "off",
|
|
"react/jsx-handler-names": "off",
|
|
"react/prop-types": "off",
|
|
"space-before-function-paren": "off",
|
|
"standard/no-callback-literal": "off",
|
|
|
|
"eqeqeq": "off",
|
|
"import/no-webpack-loader-syntax": "off",
|
|
"object-property-newline": "off",
|
|
"react/jsx-no-bind": "off"
|
|
},
|
|
"globals": {
|
|
"require": false,
|
|
"module": false
|
|
}
|
|
}
|