Hi, im currently still stuck on v2.26 because a regression made in v2.27 which incorrectly suggests the wrong order for my config. I have cloned the repo and written a test which works in 2.26 but fails in the latest version which may help:
test({
code: `
import express from "express"
import server from "http"
import logger from "../logger"
import something from "../utils"
import {Config, Route, Server} from "./types"
`,
options: [
{
'newlines-between': 'always',
groups: [
['builtin', 'external'],
['parent', 'sibling', 'index'],
],
alphabetize: {
order: 'asc',
},
},
],
}),
This has obviously been an issue since Oct 2023 and i know there have been others that have raised similar issues too. I just wondered how to progress.
Is my config wrong and need updating for versions beyond 2.26 to enforce the same order?
Is this an agreed regression and need fixing, maybe i could help here?
Related to https://github.com/import-js/eslint-plugin-import/issues/2909
Hi, im currently still stuck on
v2.26
because a regression made inv2.27
which incorrectly suggests the wrong order for my config. I have cloned the repo and written a test which works in2.26
but fails in the latest version which may help:This has obviously been an issue since Oct 2023 and i know there have been others that have raised similar issues too. I just wondered how to progress.
2.26
to enforce the same order?Cheers!