diff --git a/.vscode/extensions.json b/.vscode/extensions.json index 1949e6fc5..cbdc210f0 100644 --- a/.vscode/extensions.json +++ b/.vscode/extensions.json @@ -2,7 +2,8 @@ "recommendations": [ "bmalehorn.shell-syntax", "timonwong.shellcheck", - "foxundermoon.shell-format" + "foxundermoon.shell-format", + "editorconfig.editorconfig" ], "unwantedRecommendations": [] } diff --git a/.vscode/settings.json b/.vscode/settings.json index be834d99a..72ae89602 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -1,5 +1,11 @@ { "files.associations": { "*.func": "shellscript" + }, + "files.eol": "\n", + "files.insertFinalNewline": true, + "editor.formatOnSave": true, + "editor.codeActionsOnSave": { + "source.fixAll": true } -} \ No newline at end of file +}