26 lines
661 B
JSON
26 lines
661 B
JSON
{
|
|
"extends": [
|
|
"react-app",
|
|
"airbnb-typescript",
|
|
"prettier/@typescript-eslint",
|
|
"plugin:prettier/recommended"
|
|
],
|
|
"rules": {
|
|
"react/prop-types": "off",
|
|
"react/jsx-indent": [2, 4, { "checkAttributes": false }],
|
|
"react/jsx-indent-props": [2, 4],
|
|
"import/prefer-default-export": "off",
|
|
"import/no-cycle": "off",
|
|
"no-multi-assign": "off"
|
|
},
|
|
"settings": {
|
|
"import/parsers": {
|
|
"@typescript-eslint/parser": [".ts", ".tsx"]
|
|
},
|
|
"import/resolver": {
|
|
"typescript": {}
|
|
}
|
|
},
|
|
"plugins": ["import", "jest-dom"]
|
|
}
|