-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathscala_learning.code-workspace
43 lines (40 loc) · 1.13 KB
/
scala_learning.code-workspace
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
{
"folders": [
{
"path": "."
}
],
"settings": {
"editor.renderWhitespace": "all",
"[markdown]": {
"editor.wordWrap": "wordWrapColumn",
"editor.wordWrapColumn": 80,
"editor.wrappingIndent": "none",
"editor.renderWhitespace": "all",
"editor.codeActionsOnSave": {
"source.fixAll.markdownlint": true
}
},
"editor.tabSize": 4,
"editor.insertSpaces": true,
"editor.detectIndentation": false,
"editor.fontSize": 16,
"terminal.integrated.rendererType": "dom",
"git.autorefresh": true,
"markdownlint.ignore": ["**/*.md.html"],
"files.insertFinalNewline": true,
"files.associations": {
"*.md.html": "markdown"
},
"shellcheck.enable": true,
"shellcheck.useWorkspaceRootAsCwd": true,
"shellcheck.run": "onSave",
"shellformat.flag": "-i 2 -ci -sr -bn",
"metals.javaHome": "/home/girish/.sdkman/candidates/java/8.0.232-open",
"metals.sbtScript": "/home/girish/.sdkman/candidates/sbt/1.3.8/bin/sbt",
"metals.scalafmtConfigPath": "./.scalafmt.conf",
"files.watcherExclude": {
"**/target": true
}
}
}