Skip to content

Commit 8cd5a89

Browse files
authored
refactor: incorrect minimatch import order
1 parent 03c4f81 commit 8cd5a89

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/rules/extensions.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
import path from 'node:path'
22

3+
import { minimatch } from 'minimatch'
4+
35
import type { FileExtension, RuleContext } from '../types.js'
46
import {
57
isBuiltIn,
@@ -9,7 +11,6 @@ import {
911
moduleVisitor,
1012
resolve,
1113
} from '../utils/index.js'
12-
import { minimatch } from 'minimatch'
1314

1415
const modifierValues = ['always', 'ignorePackages', 'never'] as const
1516

0 commit comments

Comments
 (0)