mirror of
https://github.com/godotengine/godot-vscode-plugin.git
synced 2025-12-31 13:48:24 +03:00
* Add biome as a dev dependency and add "npm format" script * Align new debugger code with project style
27 lines
411 B
JSON
27 lines
411 B
JSON
{
|
|
"vcs": {
|
|
"defaultBranch": "master"
|
|
},
|
|
"formatter": {
|
|
"enabled": true,
|
|
"formatWithErrors": false,
|
|
"indentStyle": "tab",
|
|
"indentWidth": 4,
|
|
"lineWidth": 120,
|
|
"lineEnding": "lf",
|
|
"include": ["src/**/*.ts"]
|
|
},
|
|
"files": {
|
|
"include": ["src/**/*.ts"],
|
|
"ignore": ["node_modules"]
|
|
},
|
|
"linter": {
|
|
"rules": {
|
|
"style": {
|
|
"noUselessElse": "off",
|
|
"useImportType": "off"
|
|
}
|
|
}
|
|
}
|
|
}
|