Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 28 additions & 0 deletions tests/src/rules/order.js
Original file line number Diff line number Diff line change
Expand Up @@ -3284,6 +3284,34 @@ context('TypeScript', function () {
],
}],
}),

// #2441 - type imports have to be in the same order as regular imports
test({
code: `
import type A from "fs";
import type B from "path";
import type C from "../foo.js";
import type D from "./bar.js";
import type E from './';

import a from "fs";
import b from "path";
import c from "../foo.js";
import d from "./bar.js";
import e from "./";
`,
...parserConfig,
options: [
{
groups: ['type', 'builtin', 'parent', 'sibling', 'index'],
alphabetize: {
order: 'asc',
caseInsensitive: true,
},
sortTypesGroup: true,
},
],
}),
] : [],
),
invalid: [].concat(
Expand Down
Loading