-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy patheps.code-workspace
More file actions
51 lines (51 loc) · 1.13 KB
/
eps.code-workspace
File metadata and controls
51 lines (51 loc) · 1.13 KB
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
44
45
46
47
48
49
50
51
{
"folders": [
{
"path": "."
}
],
"settings": {
"cSpell.enableFiletypes": [
"dockercompose",
"dockerfile",
"elixir"
],
"editor.formatOnSave": true,
"editor.formatOnPaste": true,
"editor.wordWrap": "on",
"elixirLS.fetchDeps": false,
"elixirLS.mixEnv": "dev",
"emeraldwalk.runonsave": {
"commands": [
{
"match": "\\.exs?$",
"isAsync": true,
"cmd": "cd ${workspaceRoot} && mix format ${file}"
},
]
},
"files.associations": {
"*.dockerignore": "ignore",
".env-*": "dotenv",
"Dockerfile-*": "dockerfile"
},
"files.eol": "\n",
"remote.containers.defaultExtensions": [
"bierner.markdown-preview-github-styles",
"davidanson.vscode-markdownlint",
"donjayamanne.githistory",
"eamodio.gitlens",
"emeraldwalk.runonsave",
"github.vscode-pull-request-github",
"hashicorp.terraform",
"jakebecker.elixir-ls",
"mikestead.dotenv",
"ms-azuretools.vscode-docker",
"pantajoe.vscode-elixir-credo",
"shakram02.bash-beautify",
"shardulm94.trailing-spaces",
"streetsidesoftware.code-spell-checker"
],
"workbench.editor.highlightModifiedTabs": true
}
}