@@ -25,31 +25,24 @@ module.exports = {
25
25
'import/order' : [
26
26
'warn' ,
27
27
{
28
- alphabetize : {
29
- order : 'asc' ,
30
- orderImportKind : 'asc' ,
31
- caseInsensitive : true ,
32
- } ,
33
28
groups : [
34
- 'builtin' , // Built-in Node.js modules
35
- 'external' , // Third-party libraries
36
- 'internal' , // Internal modules (if any)
37
- 'parent' , // Imports from parent directories
38
- 'sibling' , // Imports from sibling directories
39
- 'index' , // Imports from index files
40
- 'object' , // Namespace imports
41
- 'type' , // Type imports
29
+ 'builtin' , // Node.js built-in modules
30
+ 'external' , // Packages
31
+ 'internal' , // Aliased modules
32
+ 'parent' , // Relative parent
33
+ 'sibling' , // Relative sibling
34
+ 'index' , // Relative index
42
35
] ,
43
- named : true ,
44
36
'newlines-between' : 'never' ,
45
37
pathGroups : [
46
38
{
47
- pattern : '@/**' , // Internal paths
39
+ pattern : '@/**' ,
48
40
group : 'internal' ,
49
41
} ,
50
42
] ,
51
43
} ,
52
44
] ,
45
+
53
46
/** Prevents fallthrough in switch statements but allows empty cases */
54
47
'no-fallthrough' : [
55
48
'error' ,
0 commit comments