I don't know if it is a common situation, but I would very much like a separate rule that enforces newlines between imports (or avoids them).
For example, I need to set up the rule like this:
"import/order": [
"error",
{
// disable all default grouping behaviour
groups: [],
// disable alphabetising
alphabetize: {
order: "ignore",
caseInsensitive: false,
},
"newlines-between": "never",
},
],
just because I prefer to handle the sorting elsewhere or by other rules/plugins/file-specific.