setup-cpp/biome.jsonc

67 lines
1.3 KiB
Plaintext
Raw Permalink Normal View History

2024-08-07 14:44:32 +08:00
{
"$schema": "https://biomejs.dev/schemas/1.9.1/schema.json",
"files": {
"ignore": [
"**/node_modules/**",
"**/.pnpm-store/**",
"**/dist/**",
"dev/cpp_vcpkg_project/**/*",
"**/.venv/",
"**/.*cache/",
"coverage/",
"**/coverage/",
"**/github_brechtsanders_winlibs_mingw.json"
],
"ignoreUnknown": true
},
"organizeImports": {
"enabled": true
},
"linter": {
"enabled": true,
"rules": {
"recommended": true,
"style": {
"noInferrableTypes": "off",
"noUselessElse": "off",
"noNonNullAssertion": "off",
"useNodejsImportProtocol": "off"
},
"complexity": {
"useLiteralKeys": "off"
},
"suspicious": {
"noConfusingVoidType": "off"
},
"correctness": {
"useImportExtensions": {
"level": "error",
"options": {
"suggestedExtensions": {
"ts": {
"component": "js",
"module": "js"
}
}
}
}
}
}
},
"formatter": {
"enabled": false,
"indentWidth": 4,
"indentStyle": "space"
},
"json": {
2024-08-07 14:44:32 +08:00
"formatter": {
"enabled": false,
"trailingCommas": "none"
2024-08-07 14:44:32 +08:00
},
"parser": {
"allowComments": true,
"allowTrailingCommas": true
2024-08-07 14:44:32 +08:00
}
}
2024-08-07 14:44:32 +08:00
}