diff options
| author | RblSb <msrblsb@gmail.com> | 2021-07-04 03:59:50 +0300 |
|---|---|---|
| committer | RblSb <msrblsb@gmail.com> | 2021-07-05 17:04:25 +0300 |
| commit | ede45cea8706eb8540e466df9861c2af8ebf9c44 (patch) | |
| tree | 74a20a6f082173378f918b48b08542881f31749a /.vscode | |
| parent | 265b3e1fb56bb0e5f797b3b35227a616b108a0c3 (diff) | |
Reformat
Diffstat (limited to '.vscode')
| -rw-r--r-- | .vscode/extensions.json | 6 | ||||
| -rw-r--r-- | .vscode/launch.json | 3 | ||||
| -rw-r--r-- | .vscode/settings.json | 18 |
3 files changed, 24 insertions, 3 deletions
diff --git a/.vscode/extensions.json b/.vscode/extensions.json new file mode 100644 index 0000000..fc94805 --- /dev/null +++ b/.vscode/extensions.json @@ -0,0 +1,6 @@ +{ + "recommendations": [ + "nadako.vshaxe", + "hookyqr.beautify" + ] +} diff --git a/.vscode/launch.json b/.vscode/launch.json index df67501..412a615 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -1,13 +1,14 @@ { "configurations": [ { - "type": "node", + "type": "pwa-node", "request": "launch", "name": "Node: build and run", "program": "${workspaceFolder}/build/server.js", "args": ["--verbose"], "sourceMaps": true, "preLaunchTask": "Build all", + "killBehavior": "polite", "console": "integratedTerminal" } ] diff --git a/.vscode/settings.json b/.vscode/settings.json index 047e16b..575d45b 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -1,10 +1,24 @@ { "haxe.configurations": [ - ["build-server.hxml"] + ["build-server.hxml"] ], "search.exclude": { "build": true, "res/temp": true, "res/client.js": true - } + }, + "[haxe]": { + "editor.formatOnSave": true, + "editor.codeActionsOnSave": { + "source.organizeImports": true + } + }, + "[html]": { + "editor.formatOnSave": true, + "editor.defaultFormatter": "vscode.html-language-features" + }, + "[css]": { + "editor.formatOnSave": true, + "editor.defaultFormatter": "HookyQR.beautify" + }, } |
