-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathvscode_settings.json
More file actions
132 lines (132 loc) · 3.79 KB
/
vscode_settings.json
File metadata and controls
132 lines (132 loc) · 3.79 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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
{
"editor.fontSize": 14,
"workbench.colorTheme": "Atom One Dark",
"workbench.colorCustomizations": {
"editor.background": "#1b1d1f"
},
"window.title": "${folderName}${separator}${activeEditorMedium}",
"javascript.updateImportsOnFileMove.enabled": "always",
"terminal.integrated.scrollback": 100000,
"eslint.format.enable": true,
"eslint.codeActionsOnSave.mode": "all",
"editor.defaultFormatter": "esbenp.prettier-vscode",
"typescript.updateImportsOnFileMove.enabled": "always",
"editor.minimap.enabled": false,
"explorer.confirmDelete": false,
"workbench.editor.labelFormat": "short",
"cSpell.userWords": [
"Booklist",
"camelcase",
"Cannabinoids",
"classname",
"commitlint",
"contentful",
"directus",
"Imgix",
"indica",
"leafly",
"moonrepo",
"nums",
"openapi",
"packemon",
"Sailthru",
"semibold",
"Sitewide",
"SOTY",
"subcomponents",
"tailwindcss",
"tanstack",
"testid"
],
"workbench.statusBar.visible": true,
"git.promptToSaveFilesBeforeCommit": "never",
"editor.suggestSelection": "first",
"vsintellicode.modify.editor.suggestSelection": "automaticallyOverrodeDefaultValue",
"editor.renderWhitespace": "all",
"diffEditor.ignoreTrimWhitespace": false,
"gitlens.toggleLineBlame": true,
"tailwindCSS.emmetCompletions": true,
"tailwindCSS.includeLanguages": {
"plaintext": "javascript"
},
"terminal.integrated.fontSize": 14,
"files.exclude": {
"**/.classpath": true,
"**/.project": true,
"**/.settings": true,
"**/.factorypath": true
},
"workbench.editor.enablePreview": true,
"workbench.editor.enablePreviewFromQuickOpen": true,
"workbench.editor.wrapTabs": true,
"workbench.editor.decorations.colors": true,
"redhat.telemetry.enabled": false,
"security.workspace.trust.untrustedFiles": "open",
"indentRainbow.includedLanguages": ["none"],
"editor.guides.bracketPairs": true,
"editor.guides.bracketPairsHorizontal": false,
"ruby.intellisense": false,
"ruby.lint": {
"rubocop": true,
"reek": false
},
"ruby.format": "standard",
"ruby.useBundler": true,
"solargraph.completion": true,
"solargraph.definitions": true,
"solargraph.folding": true,
"solargraph.hover": true,
"solargraph.rename": true,
"solargraph.references": true,
"solargraph.symbols": true,
"solargraph.useBundler": true,
"solargraph.formatting": true,
"solargraph.checkGemVersion": false,
"editor.accessibilitySupport": "off",
"editor.quickSuggestions": {
"strings": true
},
"css.validate": false,
"git.autofetch": true,
"git.confirmSync": false,
"projectManager.git.baseFolders": ["/Users/daniel/code"],
"projectManager.sortList": "Recent",
"editor.gotoLocation.multipleDefinitions": "goto",
"editor.gotoLocation.multipleTypeDefinitions": "goto",
"editor.inlineSuggest.enabled": true,
"github.copilot.enable": {
"*": true,
"yaml": true,
"plaintext": true,
"markdown": true,
"typescript": true,
"typescriptreact": true
},
"eslint.validate": [
"javascript",
"javascriptreact",
"html",
"typescript",
"typescriptreact",
"json",
"jsonc"
],
"editor.formatOnSave": true,
"vscode-pets.petSize": "small",
"vscode-pets.throwBallWithMouse": true,
"vscode-pets.theme": "forest",
"editor.fontLigatures": false,
"explorer.confirmDragAndDrop": false,
"terminal.integrated.fontWeight": "300",
"terminal.integrated.env.osx": {},
"editor.fontFamily": "FiraCode Nerd Font Mono, Menlo, Monaco, 'Courier New', monospace",
"errorLens.enabledDiagnosticLevels": ["error"],
"[astro]": {
"editor.defaultFormatter": "astro-build.astro-vscode"
},
"[prisma]": {
"editor.defaultFormatter": "Prisma.prisma"
},
"workbench.iconTheme": "vscode-icons",
"vsicons.dontShowNewVersionMessage": true
}