File tree 3 files changed +32
-1
lines changed
3 files changed +32
-1
lines changed Original file line number Diff line number Diff line change @@ -38,7 +38,8 @@ fp_lab3-*.tar
38
38
.vscode /
39
39
.code-workspace
40
40
! .vscode /launch.json
41
- ! .vscode /tasks.json
41
+ ! .vscode /settings.json
42
+ ! .vscode /extensions.json
42
43
43
44
# ## Log files ###
44
45
* .log
Original file line number Diff line number Diff line change
1
+ {
2
+ "recommendations" : [
3
+ " JakeBecker.elixir-ls" ,
4
+ " samuel-pordeus.elixir-test" ,
5
+ " pantajoe.vscode-elixir-credo"
6
+ ]
7
+ }
Original file line number Diff line number Diff line change
1
+ {
2
+ "[elixir]" : {
3
+ // Based on Elixir formatter's style
4
+ "editor.insertSpaces" : true ,
5
+ // Note: While it is possible to override this in your VSCode configuration, the Elixir Formatter
6
+ // does not support a configurable tab size, so if you override this then you should not use the
7
+ // formatter.
8
+ "editor.tabSize" : 2 ,
9
+ "files.trimTrailingWhitespace" : true ,
10
+ "files.insertFinalNewline" : true ,
11
+ "files.trimFinalNewlines" : true ,
12
+
13
+ // Provides smart completion for "do" and "fn ->" blocks. Does not run the Elixir formatter.
14
+ "editor.formatOnType" : true ,
15
+
16
+ // Misc
17
+ "editor.wordBasedSuggestions" : " off" ,
18
+ "editor.trimAutoWhitespace" : false
19
+ },
20
+ "[json]" : {
21
+ "editor.tabSize" : 2
22
+ }
23
+ }
You can’t perform that action at this time.
0 commit comments