mirror of
https://github.com/godotengine/godot-vscode-plugin.git
synced 2025-12-31 13:48:24 +03:00
32 lines
636 B
JSON
32 lines
636 B
JSON
{
|
|
"$schema": "https://biomejs.dev/schemas/1.9.3/schema.json",
|
|
"vcs": {
|
|
"defaultBranch": "master"
|
|
},
|
|
"formatter": {
|
|
"enabled": true,
|
|
"formatWithErrors": false,
|
|
"indentStyle": "tab",
|
|
"indentWidth": 4,
|
|
"lineWidth": 120,
|
|
"lineEnding": "lf",
|
|
"include": ["src/**/*.ts", "tools/**/*.ts"]
|
|
},
|
|
"files": {
|
|
"include": ["src/**/*.ts", "tools/**/*.ts"],
|
|
"ignore": ["node_modules"]
|
|
},
|
|
"linter": {
|
|
"rules": {
|
|
"style": {
|
|
"noUselessElse": "off",
|
|
"useImportType": "off",
|
|
"noParameterAssign": "warn"
|
|
},
|
|
"suspicious": {
|
|
"noExplicitAny": "off"
|
|
}
|
|
}
|
|
}
|
|
}
|