mars-v2-frontend/.eslintrc.json

20 lines
363 B
JSON
Raw Normal View History

2022-09-02 11:17:39 +00:00
{
"extends": "next/core-web-vitals",
"rules": {
"sort-imports": [
"warn",
{
"ignoreCase": true,
"ignoreDeclarationSort": true
}
],
"import/order": [
"warn",
{
"newlines-between": "always",
"groups": ["external", "builtin", "internal", "sibling", "parent", "index"]
}
]
}
2022-09-02 11:17:39 +00:00
}