mirror of
https://github.com/godotengine/godot-vscode-plugin.git
synced 2025-12-31 13:48:24 +03:00
* Add PACKED_VECTOR4_ARRAY type * Disable noUselessElse lint rule * Fix lint rules and formatting * Implement decoding for PACKED_VECTOR4_ARRAY * Implement decoding for typed Arrays
23 lines
341 B
JSON
23 lines
341 B
JSON
{
|
|
"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"
|
|
}
|
|
}
|
|
}
|
|
}
|