-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathipm.code-workspace
More file actions
109 lines (109 loc) · 3.03 KB
/
ipm.code-workspace
File metadata and controls
109 lines (109 loc) · 3.03 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
{
"folders": [
{
"path": "."
}
],
"settings": {
"black-formatter.args": ["--config", ".black.toml"],
"diffEditor.ignoreTrimWhitespace": false,
"editor.formatOnSave": true,
"editor.insertSpaces": true,
"editor.rulers": [80],
"editor.tabSize": 4,
"files.defaultLanguage": "plaintext",
"files.encoding": "utf8",
"files.eol": "\n",
"files.insertFinalNewline": true,
"files.trimTrailingWhitespace": true,
"flake8.args": ["--config", ".flake8"],
"github.copilot.chat.commitMessageGeneration.instructions": [
{
"file": ".github/copilot/commit-message-instructions.md"
}
],
"github.copilot.chat.pullRequestDescriptionGeneration.instructions": [
{
"file": ".github/copilot/pull-request-description-instructions.md"
}
],
"isort.args": ["--settings-path", ".isort.cfg"],
"pylint.args": ["--rcfile", ".pylintrc.toml"],
"[css]": {
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.tabSize": 2
},
"[dockerfile]": {
"editor.defaultFormatter": "foxundermoon.shell-format",
"editor.tabSize": 2
},
"[gitignore]": {
"editor.defaultFormatter": "foxundermoon.shell-format"
},
"[github-actions-workflow]": {
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.tabSize": 2
},
"[go]": {
"editor.codeActionsOnSave": {
"source.organizeImports": "explicit"
},
"editor.defaultFormatter": "golang.go",
"editor.insertSpaces": false,
"editor.rulers": [80, 120]
},
"[html]": {
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.tabSize": 2
},
"[javascript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.tabSize": 2
},
"[json]": {
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.tabSize": 2
},
"[jsonc]": {
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.tabSize": 2
},
"[markdown]": {
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.tabSize": 2,
"editor.wordWrap": "on",
"files.trimTrailingWhitespace": false
},
"[powershell]": {
"editor.defaultFormatter": "ms-vscode.powershell",
"editor.rulers": [80, 120]
},
"[python]": {
"editor.codeActionsOnSave": {
"source.organizeImports": "explicit"
},
"editor.defaultFormatter": "ms-python.black-formatter",
"editor.rulers": [72, 88]
},
"[shellscript]": {
"editor.defaultFormatter": "foxundermoon.shell-format",
"editor.tabSize": 2
},
"[svg]": {
"editor.defaultFormatter": "redhat.vscode-xml",
"editor.tabSize": 2
},
"[toml]": {
"editor.defaultFormatter": "tamasfe.even-better-toml",
"editor.tabSize": 2
},
"[xml]": {
"editor.defaultFormatter": "redhat.vscode-xml",
"editor.tabSize": 2
},
"[yaml]": {
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.tabSize": 2
}
}
}