35 lines
826 B
Plaintext
35 lines
826 B
Plaintext
{
|
|
"extends": ["airbnb", "airbnb/hooks", "prettier"],
|
|
"parser": "babel-eslint",
|
|
"env": {
|
|
"browser": true,
|
|
"node": true,
|
|
"es6": true
|
|
},
|
|
"rules": {
|
|
"no-console": 0,
|
|
"react/jsx-props-no-spreading": 0,
|
|
"react/forbid-prop-types": 0,
|
|
"react/require-default-props": 0,
|
|
"react/jsx-filename-extension": [1, { "extensions": [".js", ".jsx"] }],
|
|
"import/no-extraneous-dependencies": 0,
|
|
"import/order": [
|
|
"error",
|
|
{
|
|
"groups": ["builtin", "external", "parent", "sibling", "index"],
|
|
"pathGroups": [
|
|
{
|
|
"pattern": "react",
|
|
"group": "external",
|
|
"position": "before"
|
|
}
|
|
],
|
|
"pathGroupsExcludedImportTypes": ["react"],
|
|
"alphabetize": {
|
|
"order": "asc"
|
|
}
|
|
}
|
|
]
|
|
}
|
|
}
|