Skip to content
Merged
Show file tree
Hide file tree
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
34 changes: 24 additions & 10 deletions biome.json
Original file line number Diff line number Diff line change
@@ -1,18 +1,21 @@
{
"$schema": "./node_modules/@biomejs/biome/configuration_schema.json",
"organizeImports": {
"enabled": true
},
"linter": {
"enabled": false
},
"vcs": {
"clientKind": "git",
"useIgnoreFile": false,
"defaultBranch": "main"
},
"files": {
"ignore": [
"maxSize": 10000000,
"ignoreUnknown": true,
"includes": [
"**/*.ts",
"**/*.tsx",
"**/*.js",
"**/*.jsx",
"**/*.json"
],
"experimentalScannerIgnores": [
".next/",
".pnpm-store/",
"coverage/",
Expand All @@ -31,7 +34,8 @@
"*.snap",
"**/__snapshots__/",
".docusaurus",
".vitest-reports"
".vitest-reports",
"**/*.gen.ts"
]
},
"formatter": {
Expand All @@ -58,13 +62,23 @@
},
"json": {
"formatter": {
"enabled": true
"enabled": false
},
"parser": {
"allowComments": true
},
"linter": {
"enabled": true
"enabled": false
}
},
"linter": {
"enabled": false
},
"assist": {
"actions": {
"source": {
"organizeImports": "on"
}
}
}
}
3 changes: 3 additions & 0 deletions eslint.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ export default [
'scripts/generatePackages.ts',
'scripts/*.ts',
'*.min.js',
'**/*.gen.ts', // Ignore generated files
],
},
{
Expand Down Expand Up @@ -52,6 +53,7 @@ export default [
'import/no-default-export': 'error',
'no-await-in-loop': 'off',
'@typescript-eslint/no-namespace': 'off',
'sort-imports': 'off', // Disable sort-imports to avoid conflict with Biome
},
},

Expand All @@ -69,6 +71,7 @@ export default [
'@typescript-eslint/no-unused-vars': 'warn',
'@typescript-eslint/consistent-type-definitions': 'warn',
'@typescript-eslint/ban-types': 'warn',
'sort-imports': 'off', // Disable sort-imports to avoid conflict with Biome
},
})),

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@
]
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@biomejs/biome": "2.2.2",
"@commitlint/cli": "19.8.1",
"@commitlint/config-conventional": "19.8.1",
"@manypkg/cli": "0.24.0",
Expand Down
Loading
Loading