File tree Expand file tree Collapse file tree 4 files changed +2104
-5666
lines changed Expand file tree Collapse file tree 4 files changed +2104
-5666
lines changed Original file line number Diff line number Diff line change 1
1
{
2
2
"$schema" : " ./node_modules/@biomejs/biome/configuration_schema.json" ,
3
- "organizeImports" : {
4
- "enabled" : true
5
- },
6
- "linter" : {
7
- "enabled" : false
8
- },
9
3
"vcs" : {
10
4
"clientKind" : " git" ,
11
5
"useIgnoreFile" : false ,
12
6
"defaultBranch" : " main"
13
7
},
14
8
"files" : {
15
- "ignore" : [
9
+ "maxSize" : 10000000 ,
10
+ "ignoreUnknown" : true ,
11
+ "includes" : [
12
+ " **/*.ts" ,
13
+ " **/*.tsx" ,
14
+ " **/*.js" ,
15
+ " **/*.jsx" ,
16
+ " **/*.json"
17
+ ],
18
+ "experimentalScannerIgnores" : [
16
19
" .next/" ,
17
20
" .pnpm-store/" ,
18
21
" coverage/" ,
31
34
" *.snap" ,
32
35
" **/__snapshots__/" ,
33
36
" .docusaurus" ,
34
- " .vitest-reports"
37
+ " .vitest-reports" ,
38
+ " **/*.gen.ts"
35
39
]
36
40
},
37
41
"formatter" : {
58
62
},
59
63
"json" : {
60
64
"formatter" : {
61
- "enabled" : true
65
+ "enabled" : false
62
66
},
63
67
"parser" : {
64
68
"allowComments" : true
65
69
},
66
70
"linter" : {
67
- "enabled" : true
71
+ "enabled" : false
72
+ }
73
+ },
74
+ "linter" : {
75
+ "enabled" : false
76
+ },
77
+ "assist" : {
78
+ "actions" : {
79
+ "source" : {
80
+ "organizeImports" : " on"
81
+ }
68
82
}
69
83
}
70
84
}
Original file line number Diff line number Diff line change @@ -24,6 +24,7 @@ export default [
24
24
'scripts/generatePackages.ts' ,
25
25
'scripts/*.ts' ,
26
26
'*.min.js' ,
27
+ '**/*.gen.ts' , // Ignore generated files
27
28
] ,
28
29
} ,
29
30
{
@@ -52,6 +53,7 @@ export default [
52
53
'import/no-default-export' : 'error' ,
53
54
'no-await-in-loop' : 'off' ,
54
55
'@typescript-eslint/no-namespace' : 'off' ,
56
+ 'sort-imports' : 'off' , // Disable sort-imports to avoid conflict with Biome
55
57
} ,
56
58
} ,
57
59
@@ -69,6 +71,7 @@ export default [
69
71
'@typescript-eslint/no-unused-vars' : 'warn' ,
70
72
'@typescript-eslint/consistent-type-definitions' : 'warn' ,
71
73
'@typescript-eslint/ban-types' : 'warn' ,
74
+ 'sort-imports' : 'off' , // Disable sort-imports to avoid conflict with Biome
72
75
} ,
73
76
} ) ) ,
74
77
Original file line number Diff line number Diff line change 55
55
]
56
56
},
57
57
"devDependencies" : {
58
- "@biomejs/biome" : " 1.9.4 " ,
58
+ "@biomejs/biome" : " 2.2.2 " ,
59
59
"@commitlint/cli" : " 19.8.1" ,
60
60
"@commitlint/config-conventional" : " 19.8.1" ,
61
61
"@manypkg/cli" : " 0.24.0" ,
You can’t perform that action at this time.
0 commit comments