-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcode-settings.json
More file actions
114 lines (102 loc) · 3.1 KB
/
code-settings.json
File metadata and controls
114 lines (102 loc) · 3.1 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
{
"workbench.colorTheme": "Karma",
"editor.fontFamily": "Fira Code",
"editor.fontLigatures": true,
"editor.formatOnSave": true,
"explorer.confirmDragAndDrop": false,
"git.confirmSync": false,
"gopls": {
"ui.semanticTokens": true
},
"editor.stickyScroll.enabled": true,
"sort-imports.languages": ["javascript", "typescript"],
"[typescript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode",
"typescript.preferences.importModuleSpecifier": "non-relative"
},
"[typescriptreact]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"flake8.args": ["--max-line-length=120"],
"pylint.args": ["--max-line-length=120"],
"C_Cpp.codeAnalysis.clangTidy.enabled": true,
"[python]": {
"editor.wordBasedSuggestions": "matchingDocuments",
"editor.defaultFormatter": "ms-python.black-formatter",
"editor.formatOnSave": true,
"editor.codeActionsOnSave": {
"source.organizeImports": "never"
},
"editor.formatOnType": true
},
"python.analysis.autoImportCompletions": true,
"python.analysis.indexing": true,
"python.analysis.typeCheckingMode": "basic",
"[java]": {
"editor.formatOnSave": true
},
"[jsonc]": {
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.formatOnSave": true
},
"[go]": {
"go.autocompleteUnimportedPackages": true
},
"[dockercompose]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[html]": {
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.formatOnSave": false
},
"[json]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[helm]": {
"editor.formatOnSave": false
},
"css.lint.argumentsInColorFunction": "warning",
"java.configuration.runtimes": [],
"cmake.showOptionsMovedNotification": false,
"[csharp]": {
"editor.defaultFormatter": "ms-dotnettools.csharp",
"editor.wordWrap": "wordWrapColumn",
"editor.wordWrapColumn": 120
},
"[yaml]": {
"editor.defaultFormatter": "redhat.vscode-yaml"
},
"editor.stickyScroll.scrollWithEditor": false,
"git.enableCommitSigning": true,
"extensions.autoUpdate": false,
"haskell.manageHLS": "GHCup",
"[c]": {
"editor.wordBasedSuggestions": "off",
"editor.suggest.insertMode": "replace",
"editor.semanticHighlighting.enabled": true
},
"[shellscript]": {
"editor.defaultFormatter": "shakram02.bash-beautify",
"editor.formatOnSave": true
},
"cmake.configureOnOpen": true,
"json.schemas": [
{
"fileMatch": ["./access_patterns.json"],
"url": "./access_patterns.schema.json"
}
],
"[dockerfile]": {
"editor.defaultFormatter": "ms-azuretools.vscode-docker"
},
"python.defaultInterpreterPath": "/bin/python",
"workbench.editor.enablePreview": false,
"yaml.schemas": {
"file:///home/nighmared/.vscode/extensions/docsmsft.docs-yaml-1.0.5/dist/toc.schema.json": "/toc\\.yml/i"
},
"dart.flutterSdkPath": "/home/nighmared/.local/share/flutter",
"dart.debugExternalPackageLibraries": false,
"dart.debugSdkLibraries": false,
"go.toolsManagement.autoUpdate": true,
"workbench.productIconTheme": "bongocat"
}