mirror of
https://github.com/karl0ss/homepage.git
synced 2025-05-19 21:06:19 +01:00
32 lines
481 B
JSON
32 lines
481 B
JSON
{
|
|
"extends": ["airbnb", "next/core-web-vitals", "prettier"],
|
|
"plugins": ["prettier"],
|
|
"rules": {
|
|
"import/no-cycle": [
|
|
"error",
|
|
{
|
|
"maxDepth": 1
|
|
}
|
|
],
|
|
"import/order": [
|
|
"error",
|
|
{
|
|
"newlines-between": "always"
|
|
}
|
|
],
|
|
"no-else-return": [
|
|
"error",
|
|
{
|
|
"allowElseIf": true
|
|
}
|
|
]
|
|
},
|
|
"settings": {
|
|
"import/resolver": {
|
|
"node": {
|
|
"paths": ["src"]
|
|
}
|
|
}
|
|
}
|
|
}
|