-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvscode.js
102 lines (99 loc) · 2.96 KB
/
vscode.js
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
{
"editor.insertSpaces": true,
"editor.detectIndentation": true,
"editor.suggestSelection": "first",
"editor.tabSize": 2,
"editor.formatOnSave": true,
"editor.bracketPairColorization.enabled": true,
"editor.guides.bracketPairs": "active",
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.codeActionsOnSave": {
"source.fixAll.eslint": "explicit"
},
"javascript.format.placeOpenBraceOnNewLineForControlBlocks": true,
"javascript.format.placeOpenBraceOnNewLineForFunctions": true,
"typescript.format.placeOpenBraceOnNewLineForControlBlocks": true,
"typescript.format.placeOpenBraceOnNewLineForFunctions": true,
"typescript.enablePromptUseWorkspaceTsdk": true,
"typescript.tsdk": "./node_modules/typescript/lib",
"workbench.sideBar.location": "left",
"workbench.editor.showTabs": "multiple",
"workbench.colorCustomizations": {
"terminal.ansiBrightBlack": "#fff"
},
"files.trimTrailingWhitespace": true,
"files.eol": "\r\n",
"search.exclude": {
"**/node_modules": true,
"**/build": true
},
"search.useIgnoreFiles": true,
// Git
"git.autofetch": true,
"gitlens.hovers.currentLine.over": "line",
"gitlens.views.repositories.files.layout": "list",
// Emmet
"emmet.syntaxProfiles": {
"vue-html": "html",
"vue": "html"
},
"emmet.showAbbreviationSuggestions": true,
"emmet.showExpandedAbbreviation": "always",
"emmet.triggerExpansionOnTab": true,
"emmet.includeLanguages": {
"vue-html": "html",
"vue": "html",
"js": "html",
"ss": "html",
"Silverstripe": "html",
"blade": "html"
},
// Styles
"scss.validate": false,
"css.validate": false,
// ESLint
"eslint.format.enable": true,
"eslint.validate": [
"javascript",
"javascriptreact",
"typescript",
"typescriptreact",
"vue",
"mdx",
"md"
],
"eslint.options": {
"extensions": [".js", ".jsx", ".md", ".mdx", ".ts", ".tsx"]
},
"eslint.debug": true,
// Other
"typescript.referencesCodeLens.enabled": false,
"importCost.javascriptExtensions": ["\\.jsx?$", "\\.js?$"],
"importCost.typescriptExtensions": ["\\.tsx?$", "\\.ts?$"],
"typescript.updateImportsOnFileMove.enabled": "always",
"security.workspace.trust.untrustedFiles": "open",
"explorer.confirmDelete": false,
"javascript.updateImportsOnFileMove.enabled": "always",
"redhat.telemetry.enabled": false,
"editor.inlineSuggest.enabled": true,
"github.copilot.enable": {
"*": true
},
// "http.proxy": "http://localhost:3128",
// "http.proxyStrictSSL": false
"http.proxy": "http://localhost:3128",
"http.proxyStrictSSL": false,
"terminal.integrated.env.osx": {},
"files.insertFinalNewline": true,
"[shellscript]": {
"editor.formatOnSave": false
},
"[ignore]": {
"editor.formatOnSave": false
},
"diffEditor.ignoreTrimWhitespace": false,
"hediet.vscode-drawio.resizeImages": null,
"security.promptForLocalFileProtocolHandling": false,
"vitest.enable": true,
"vitest.commandLine": "npx vitest"
}