-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path2rm.code-workspace
46 lines (46 loc) · 1010 Bytes
/
2rm.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
44
45
46
{
"folders": [
{
"path": ".",
},
],
"settings": {
"files.insertFinalNewline": true,
"workbench.iconTheme": "material-icon-theme",
"editor.inlineSuggest.enabled": true,
"editor.renderWhitespace": "trailing",
"eslint.lintTask.enable": true,
"editor.formatOnSave": true,
"editor.rulers": [
80,
120
],
"editor.tabSize": 2,
"editor.insertSpaces": true,
"explorer.compactFolders": false,
"cSpell.caseSensitive": false,
"cSpell.words": [
"2rm",
"actioned"
],
"cSpell.flagWords": [
"yuo"
],
"cSpell.ignorePaths": [
"**/node_modules/**",
"**/dist/**",
"2rm.code-workspace"
],
},
"extensions": {
"recommendations": [
"streetsidesoftware.code-spell-checker",
"pkief.material-icon-theme",
"aaron-bond.better-comments",
"yzhang.markdown-all-in-one",
"davidanson.vscode-markdownlint",
"golang.go",
"redhat.vscode-yaml",
],
},
}