Files
2026-02-04 18:01:45 +08:00

45 lines
835 B
JSON

{
"$schema": "./node_modules/@biomejs/biome/configuration_schema.json",
"assist": {
"actions": {
"source": {
"organizeImports": "on"
}
}
},
"vcs": {
"enabled": true,
"defaultBranch": "main",
"clientKind": "git",
"useIgnoreFile": true
},
"files": {
"includes": [
"**/packages/**",
"**/scripts/**",
"!skills/**/scripts/*.{js,cjs,mjs}",
"!**/node_modules",
"!**/dist",
"!**/dist-*"
],
"ignoreUnknown": true
},
"formatter": {
"enabled": false
},
"linter": {
"enabled": true,
"rules": {
"recommended": true,
"style": {
"noNonNullAssertion": "off"
},
"suspicious": {
"noTsIgnore": "off",
"noExplicitAny": "off",
"noConfusingVoidType": "off"
}
}
}
}