-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsettings.json
112 lines (112 loc) · 2.9 KB
/
settings.json
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
{
// visuals
"window.autoDetectColorScheme": true,
"editor.fontLigatures": "'ss01', 'ss02', 'ss03', 'ss06', 'zero'",
"editor.cursorBlinking": "phase",
"editor.suggestSelection": "first",
"editor.wordWrap": "on",
"editor.bracketPairColorization.enabled": true,
"editor.tabSize": 2,
"editor.minimap.enabled": false,
"search.exclude": {
"**/.git": true,
"**/.nuxt": true,
"**/.pnpm": true,
"**/.vscode": true,
"**/.yarn": true,
"**/.turbo": true,
"**/dist/**": true,
"**/out/**": true,
"**/logs": true,
"**/node_modules": true,
"**/package-lock.json": true,
"**/pnpm-lock.yaml": true,
"**/yarn.lock": true,
"**/bun.lock": true
},
// general
"editor.unicodeHighlight.invisibleCharacters": false,
"workbench.startupEditor": "none",
// git
"git.autofetch": true,
"git.untrackedChanges": "separate",
// github
"githubPullRequests.pullBranch": "never",
// eslint
"editor.codeActionsOnSave": {
"source.fixAll": "never",
"source.fixAll.eslint": "explicit",
"source.organizeImports": "never"
},
"eslint.quiet": true,
"eslint.validate": [
"javascript",
"javascriptreact",
"typescript",
"typescriptreact",
"vue",
"html",
"markdown",
"json",
"jsonc",
"yaml",
"toml",
"xml",
"gql",
"graphql",
"astro",
"svelte",
"css",
"less",
"scss",
"pcss",
"postcss"
],
// stylelint
"css.validate": true,
"less.validate": true,
"scss.validate": true,
"files.associations": {
"*.css": "postcss"
},
// languages
"[javascript]": {
"editor.defaultFormatter": "dbaeumer.vscode-eslint"
},
"javascript.preferences.quoteStyle": "single",
"javascript.preferences.importModuleSpecifierEnding": "js",
"javascript.suggest.completeJSDocs": true,
"javascript.suggest.jsdoc.generateReturns": true,
"[typescript]": {
"editor.defaultFormatter": "dbaeumer.vscode-eslint"
},
"typescript.preferences.quoteStyle": "single",
"typescript.preferences.importModuleSpecifierEnding": "js",
"typescript.suggest.completeJSDocs": true,
"typescript.suggest.jsdoc.generateReturns": true,
"[html]": {
"editor.defaultFormatter": "dbaeumer.vscode-eslint"
},
"[markdown]": {
"editor.quickSuggestions": {
"other": true,
"comments": true,
"strings": true
},
"editor.formatOnSave": true,
"editor.formatOnPaste": true,
"editor.defaultFormatter": "yzhang.markdown-all-in-one"
},
// conventional commits
"conventionalCommits.showNewVersionNotes": false,
// kubernetes
"vs-kubernetes": {
"vs-kubernetes.crd-code-completion": "enabled"
},
"vscode-kubernetes.log-viewer.follow": true,
"vscode-kubernetes.log-viewer.timestamp": false,
"vscode-kubernetes.log-viewer.since": -1,
"vscode-kubernetes.log-viewer.tail": -1,
"vscode-kubernetes.log-viewer.destination": "Webview",
"vscode-kubernetes.log-viewer.wrap": true
}