42 lines
784 B
Plaintext
42 lines
784 B
Plaintext
{
|
|
"env": {
|
|
"browser": true,
|
|
"es2021": true,
|
|
"node": true
|
|
},
|
|
"extends": [
|
|
"airbnb",
|
|
"airbnb/hooks",
|
|
"plugin:react/recommended",
|
|
"plugin:prettier/recommended"
|
|
],
|
|
"parserOptions": {
|
|
"ecmaFeatures": {
|
|
"jsx": true
|
|
},
|
|
"ecmaVersion": "latest",
|
|
"sourceType": "module"
|
|
},
|
|
"plugins": ["react", "prettier"],
|
|
"rules": {
|
|
"prettier/prettier": "error",
|
|
"react/react-in-jsx-scope": "off",
|
|
"react/prop-types": "warn",
|
|
"no-console": "warn",
|
|
"max-len": [
|
|
"error",
|
|
{
|
|
"code": 120,
|
|
"ignoreUrls": true,
|
|
"ignoreStrings": true,
|
|
"ignoreTemplateLiterals": true
|
|
}
|
|
],
|
|
"semi": ["error", "always"]
|
|
},
|
|
"settings": {
|
|
"react": {
|
|
"version": "detect"
|
|
}
|
|
}
|
|
} |