mirror of
https://github.com/markmanx/isoflow.git
synced 2025-01-31 15:12:31 +00:00
38 lines
998 B
Text
38 lines
998 B
Text
{
|
|
"env": {
|
|
"browser": true,
|
|
"es2021": true
|
|
},
|
|
"plugins": [
|
|
"react",
|
|
"react-hooks",
|
|
"prettier"
|
|
],
|
|
"extends": [
|
|
"airbnb",
|
|
"airbnb-typescript",
|
|
"plugin:react-hooks/recommended",
|
|
"prettier"
|
|
],
|
|
"parserOptions": {
|
|
"ecmaVersion": "latest",
|
|
"sourceType": "module",
|
|
"project": "./tsconfig.json",
|
|
},
|
|
"rules": {
|
|
"prettier/prettier": 2,
|
|
"import/prefer-default-export": [0],
|
|
"react/function-component-definition": [0],
|
|
"react/jsx-props-no-spreading": [0],
|
|
"consistent-return": [0],
|
|
"react/no-unused-prop-types": ["warn"],
|
|
"react/require-default-props": [0],
|
|
"react/prop-types": [0],
|
|
"no-param-reassign": ["error", { "props": true, "ignorePropertyModificationsFor": ["draft"] }],
|
|
"arrow-body-style": ["error", "always"]
|
|
},
|
|
"ignorePatterns": [
|
|
"/dist",
|
|
"/node_modules"
|
|
]
|
|
}
|