-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsettings.json
111 lines (111 loc) · 3.28 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
{
"workbench.colorTheme": "One Dark Pro Darker",
"workbench.iconTheme": "material-icon-theme",
"workbench.startupEditor": "none",
"editor.minimap.enabled": false,
"editor.renderWhitespace": "all",
"editor.renderControlCharacters": true,
"editor.fontFamily": "FiraCode Nerd Font",
"editor.fontLigatures": true,
"git.autofetch": true,
"workbench.editor.pinnedTabSizing": "compact",
"git.confirmSync": false,
"python.languageServer": "Pylance",
"typescript.updateImportsOnFileMove.enabled": "always",
"workbench.editorAssociations": {
"*.ipynb": "jupyter-notebook",
"*.db": "sqlite-viewer.option"
},
"javascript.updateImportsOnFileMove.enabled": "always",
"python.terminal.activateEnvironment": false,
"todo-tree.general.tags": [
"BUG",
"HACK",
"FIXME",
"TODO",
"XXX",
"[ ]",
"[x]"
],
"todo-tree.regex.regex": "(//|#|<!--|;|/\\*|^|^\\s*(-|\\d+.))\\s*($TAGS)",
"explorer.confirmDragAndDrop": false,
"editor.wordWrap": "on",
"terminal.integrated.tabs.enabled": true,
"terminal.integrated.gpuAcceleration": "off",
"notebook.cellToolbarLocation": {
"default": "right",
"jupyter-notebook": "left"
},
"editor.inlineSuggest.enabled": true,
"security.workspace.trust.untrustedFiles": "open",
"[html]": {
"editor.defaultFormatter": "vscode.html-language-features"
},
"terminal.integrated.defaultProfile.windows": "Git Bash",
"terminal.integrated.defaultProfile.linux": "bash",
"redhat.telemetry.enabled": true,
"[typescriptreact]": {
"editor.defaultFormatter": "dbaeumer.vscode-eslint"
},
"workbench.colorCustomizations": {
"statusBar.background": "#353535"
},
"[json]": {
"editor.defaultFormatter": "vscode.json-language-features"
},
"window.restoreWindows": "none",
"files.eol": "\n",
"cSpell.language": "en,pt,pt-BR",
"files.associations": {
"*.xml": "html",
"*.svg": "html",
"*.fs": "fsharp",
"*.tsx": "typescriptreact"
},
"[yaml]": {
"editor.defaultFormatter": "redhat.vscode-yaml"
},
"[jsonc]": {
"editor.defaultFormatter": "vscode.json-language-features"
},
"[javascript]": {
"editor.defaultFormatter": "vscode.typescript-language-features"
},
"[typescript]": {
"editor.defaultFormatter": "vscode.typescript-language-features"
},
"[python]": {
"editor.defaultFormatter": "ms-python.autopep8"
},
"sonarlint.rules": {},
"go.toolsManagement.autoUpdate": true,
"git.openRepositoryInParentFolders": "always",
"diffEditor.maxComputationTime": 0,
"editor.fontSize": 14,
"diffEditor.ignoreTrimWhitespace": false,
"editor.indentSize": "tabSize",
"vs-kubernetes": {},
"window.zoomLevel": 1,
"[graphql]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"cSpell.userWords": [
"Csitea",
"Rowbots",
"Xerpay"
],
"eslint.format.enable": true,
"eslint.experimental.useFlatConfig": true,
"eslint.debug": true,
"editor.formatOnSave": true,
"explorer.fileNesting.patterns": {
"Cargo.toml": "Cargo.lock",
"*.sqlite": "${capture}.${extname}-*",
"*.db": "${capture}.${extname}-*",
"*.sqlite3": "${capture}.${extname}-*",
"*.db3": "${capture}.${extname}-*",
"*.sdb": "${capture}.${extname}-*",
"*.s3db": "${capture}.${extname}-*"
},
"prisma.showPrismaDataPlatformNotification": false,
}