-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpfaas.code-workspace
37 lines (37 loc) · 1.07 KB
/
pfaas.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
{
"folders": [
{
"path": "."
}
],
"settings": {
"cSpell.enableFiletypes": [
"dockercompose",
"dockerfile"
],
"editor.formatOnSave": true,
"editor.formatOnPaste": true,
"editor.wordWrap": "on",
"files.associations": {
"*.dockerignore": "ignore",
".env-*": "dotenv",
"Dockerfile*": "dockerfile"
},
"files.eol": "\n",
"remote.containers.defaultExtensions": [
"bierner.markdown-preview-github-styles",
"davidanson.vscode-markdownlint",
"graphql.vscode-graphql",
"ms-python.python",
"ms-vscode-remote.remote-containers",
"shakram02.bash-beautify",
"shardulm94.trailing-spaces",
"streetsidesoftware.code-spell-checker"
],
"workbench.editor.highlightModifiedTabs": true,
"[python]": {
"editor.defaultFormatter": "ms-python.python"
},
"python.formatting.provider": "autopep8"
}
}