eslint-plugin-import-helpers
eslint-plugin-import-helpers copied to clipboard
Sort import with styles does not work
I trying to sort imports with '.css' extension and add write rule in config like this:
"import-helpers/order-imports": [
"warn",
{
"newlinesBetween": "always",
"groups": [
"module",
"/^@shared/",
"/^@server/",
"/^@client/",
"/^@/",
["parent", "sibling", "index"],
"/\\.css$/"
],
"alphabetize": {
"order": "asc",
"ignoreCase": true
}
}
],
but it does not work