Added sort-imports linting rule

This commit is contained in:
2022-07-20 19:37:36 +01:00
parent b709b69364
commit dddedefd00
4 changed files with 11 additions and 3 deletions

View File

@@ -18,6 +18,12 @@
"ecmaVersion": "latest"
},
"rules": {
"max-len": "off"
"max-len": "off",
"sort-imports": [
"error",
{
"allowSeparatedGroups": true
}
]
}
}