added more eslint rules

This commit is contained in:
Proddy
2023-04-22 09:45:54 +02:00
parent fa263918ba
commit e12083e3ba

View File

@@ -59,6 +59,20 @@
"prefer": "type-imports"
}
],
"import/order": [
"warn",
{
"groups": ["builtin", "external", "parent", "sibling", "index", "object", "type"],
"pathGroups": [
{
"pattern": "@/**/**",
"group": "parent",
"position": "before"
}
],
"alphabetize": { "order": "asc" }
}
],
// "autofix/no-unused-vars": [
// "error",
// {