homepage/.eslintrc.json

43 lines
647 B
JSON
Raw Normal View History

2022-08-14 09:02:58 +00:00
{
2025-02-19 00:16:53 +00:00
"extends": [
"next/core-web-vitals",
"prettier",
"plugin:react-hooks/recommended"
],
2022-09-07 13:53:24 +00:00
"plugins": ["prettier"],
"rules": {
2022-09-25 16:43:47 +00:00
"import/no-cycle": [
"error",
{
"maxDepth": 1
}
],
2022-09-07 13:53:24 +00:00
"import/order": [
"error",
{
"newlines-between": "always"
}
2024-08-27 15:04:36 +00:00
],
"no-else-return": [
"error",
{
"allowElseIf": true
}
2022-09-07 13:53:24 +00:00
]
},
"settings": {
"import/resolver": {
"node": {
"paths": ["src"]
}
}
2025-02-19 00:16:53 +00:00
},
"parserOptions": {
"ecmaVersion": 6,
"sourceType": "module",
"ecmaFeatures": {
"modules": true
}
2022-09-07 13:53:24 +00:00
}
2022-08-14 09:02:58 +00:00
}