mirror of
https://github.com/rstackjs/agent-skills.git
synced 2026-09-14 20:07:05 +08:00
45 lines
835 B
JSON
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"
|
|
}
|
|
}
|
|
}
|
|
}
|