-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathshorts-back.code-workspace
121 lines (120 loc) · 4.15 KB
/
shorts-back.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
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
110
111
112
113
114
115
116
117
118
119
120
121
{
"folders": [
{
"path": "."
}
],
"settings": {
// "editor.formatOnType": false,
// "editor.formatOnSave": false,
// "editor.formatOnPaste": false,
"editor.tabSize": 2,
"http.proxyStrictSSL": false,
"explorer.autoReveal": true,
"liveServer.settings.multiRootWorkspaceName": "packages",
"eslint.enable": true,
"eslint.options": { "configFile": "./.eslintrc" },
"terminal.integrated.defaultProfile.windows": "Git Bash",
"terminal.integrated.defaultProfile.osx": "zsh",
"workbench.iconTheme": "material-icon-theme",
"editor.suggestSelection": "first",
"vsintellicode.modify.editor.suggestSelection": "automaticallyOverrodeDefaultValue",
"path-intellisense.extensionOnImport": true,
"files.associations": {
"*.json": "jsonc"
},
"editor.fontFamily": "D2Coding, Consolas, 나눔고딕코딩, 'Courier New', monospace",
"git.autofetch": true,
"svn.ignoreMissingSvnWarning": true,
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.insertSpaces": true,
"python.formatting.provider": "black",
"python.formatting.blackPath": "black",
"python.formatting.blackArgs": ["--line-length=240"],
"isort.args": ["--profile", "black"],
"black-formatter.args": ["--line-length", "240"],
"workbench.colorCustomizations": {},
"[html]": {
"editor.defaultFormatter": "vscode.html-language-features",
"editor.formatOnType": true,
"editor.formatOnSave": true,
"editor.formatOnPaste": true,
"prettier.printWidth": 200
},
"[javascript]": {
"editor.formatOnType": false,
"editor.formatOnSave": false,
"editor.formatOnPaste": false
},
"[python]": {
"editor.defaultFormatter": "ms-python.black-formatter",
"editor.formatOnType": true,
"editor.formatOnSave": true,
"editor.formatOnPaste": true,
"editor.codeActionsOnSave": {
"source.organizeImports": "explicit"
}
},
// The Language locale to use when spell checking. "en", "en-US" and "en-GB" are currently supported by default.
"cSpell.language": "en",
// Controls the maximum number of spelling errors per document.
"cSpell.maxNumberOfProblems": 100,
// Controls the number of suggestions shown.
"cSpell.numSuggestions": 8,
// The minimum length of a word before checking it against a dictionary.
"cSpell.minWordLength": 4,
// Specify file types to spell check.
"cSpell.enabledLanguageIds": [
"csharp",
"go",
"javascript",
"javascriptreact",
"markdown",
"php",
"plaintext",
"typescript",
"typescriptreact",
"yml",
"sql",
"python"
],
// Enable / Disable the spell checker.
"cSpell.enabled": true,
// Display the spell checker status on the status bar.
"cSpell.showStatus": true,
// Words to add to dictionary for a workspace.
"cSpell.words": [
"fredit",
"cmmsel",
"cmmfun",
"xvfb",
"pyautogui",
"useragent",
"geckodriver",
"jsonify"
],
// Enable / Disable compound words like 'errormessage'
"cSpell.allowCompoundWords": true,
// Words to be ignored and not suggested.
"cSpell.ignoreWords": ["behaviour"],
// User words to add to dictionary. Should only be in the user settings.
"cSpell.userWords": [],
// Specify paths/files to ignore.
"cSpell.ignorePaths": [
"node_modules", // this will ignore anything the node_modules directory
"**/node_modules", // the same for this one
"**/node_modules/**", // the same for this one
"node_modules/**", // Doesn't currently work due to how the current working directory is determined.
"vscode-extension", //
".git", // Ignore the .git directory
"*.dll", // Ignore all .dll files.
"**/*.dll" // Ignore all .dll files
],
// flagWords - list of words to be always considered incorrect
// This is useful for offensive words and common spelling errors.
// For example "hte" should be "the"`
"cSpell.flagWords": ["hte"],
// Set the delay before spell checking the document. Default is 50.
"cSpell.spellCheckDelayMs": 50
}
}