homepage/.eslintrc.json

43 lines
647 B
JSON
Raw Normal View History

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