Files
repomix/biome.json

62 lines
1.2 KiB
JSON

{
"$schema": "https://biomejs.dev/schemas/1.8.3/schema.json",
"files": {
"include": [
"./bin/**",
"./src/**",
"./tests/**",
"./website/**",
"./browser/**",
"./.devcontainer/**",
"./.github/**",
"package.json",
"biome.json",
".secretlintrc.json",
"tsconfig.json",
"tsconfig.build.json",
"vite.config.ts",
"repomix.config.json"
],
"ignore": [
"website/client/.vitepress/.temp",
"website/client/.vitepress/dist",
"website/client/.vitepress/cache",
"website/server/dist",
"browser/dist",
"browser/packages"
]
},
"organizeImports": {
"enabled": true
},
"linter": {
"enabled": true,
"rules": {
"recommended": true
}
},
"formatter": {
"enabled": true,
"formatWithErrors": false,
"indentStyle": "space",
"indentWidth": 2,
"lineWidth": 120
},
"javascript": {
"formatter": {
"quoteStyle": "single",
"trailingCommas": "all",
"semicolons": "always"
}
},
"json": {
"parser": {
"allowComments": true,
"allowTrailingCommas": true
},
"formatter": {
"enabled": false
}
}
}