-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
infrastructure: 🛠️ add VS Code support
- Loading branch information
1 parent
b3c4115
commit fa890b4
Showing
3 changed files
with
32 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
{ | ||
"recommendations": [ | ||
"JakeBecker.elixir-ls", | ||
"samuel-pordeus.elixir-test", | ||
"pantajoe.vscode-elixir-credo" | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
{ | ||
"[elixir]": { | ||
// Based on Elixir formatter's style | ||
"editor.insertSpaces": true, | ||
// Note: While it is possible to override this in your VSCode configuration, the Elixir Formatter | ||
// does not support a configurable tab size, so if you override this then you should not use the | ||
// formatter. | ||
"editor.tabSize": 2, | ||
"files.trimTrailingWhitespace": true, | ||
"files.insertFinalNewline": true, | ||
"files.trimFinalNewlines": true, | ||
|
||
// Provides smart completion for "do" and "fn ->" blocks. Does not run the Elixir formatter. | ||
"editor.formatOnType": true, | ||
|
||
// Misc | ||
"editor.wordBasedSuggestions": "off", | ||
"editor.trimAutoWhitespace": false | ||
}, | ||
"[json]": { | ||
"editor.tabSize": 2 | ||
} | ||
} |