Server/project/Server.code-workspace

32 lines
765 B
Plaintext
Raw Normal View History

2023-03-03 16:23:46 +01:00
{
"folders": [
{
"path": "."
}
],
"extensions": {
2023-11-10 17:29:56 +01:00
"recommendations": [
"EditorConfig.EditorConfig",
"Jota0222.multi-formatter",
"dbaeumer.vscode-eslint",
"dprint.dprint",
"biomejs.biome"
]
2023-03-03 16:23:46 +01:00
},
"settings": {
"window.title": "SPT-AKI Server",
2023-11-10 17:29:56 +01:00
"editor.formatOnSave": true,
"editor.defaultFormatter": "dprint.dprint",
"multiFormatter.formatterList": [
"dprint.dprint",
"biomejs.biome"
],
2023-03-03 16:23:46 +01:00
"[typescript]": {
2023-11-10 17:29:56 +01:00
"editor.codeActionsOnSave": {
"quickfix.biome": false,
"source.organizeImports.biome": true
}
2023-03-03 16:23:46 +01:00
}
2023-11-10 17:29:56 +01:00
}
}