-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvscode-settings.json
More file actions
104 lines (104 loc) · 3.22 KB
/
Copy pathvscode-settings.json
File metadata and controls
104 lines (104 loc) · 3.22 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
{
"codespaces.accountProvider": "Microsoft",
"todo-tree.tree.showScanModeButton": false,
"editor.suggestSelection": "first",
"vsintellicode.modify.editor.suggestSelection": "automaticallyOverrodeDefaultValue",
"files.associations": {
"*.yml": "azure-pipelines"
},
"[typescript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[html]": {
"editor.defaultFormatter": "vscode.html-language-features"
},
"angular.enable-experimental-ivy-prompt": false,
"[scss]": {
"editor.defaultFormatter": "rvest.vs-code-prettier-eslint"
},
"snippets.snippetsLocation": "c:\\Users\\martiniak\\AppData\\Roaming\\Code\\User\\globalStorage\\tahabasri.snippets\\data.json",
"security.workspace.trust.untrustedFiles": "open",
"eslint.alwaysShowStatus": true,
"yaml.schemas": {
"https://raw.githubusercontent.com/docker/cli/master/cli/compose/schema/data/config_schema_v3.8.json": "docker-compose*.yml"
},
"redhat.telemetry.enabled": true,
"[jsonc]": {
"editor.defaultFormatter": "vscode.json-language-features"
},
"[json]": {
"editor.defaultFormatter": "rvest.vs-code-prettier-eslint"
},
"editor.unicodeHighlight.ambiguousCharacters": false,
"bracket-pair-colorizer-2.depreciation-notice": false,
"editor.inlineSuggest.enabled": true,
"github.copilot.enable": {
"*": true,
"yaml": false,
"plaintext": false,
"markdown": true,
"html": true
},
"editor.renderWhitespace": "all",
"git.enableSmartCommit": true,
"git.confirmSync": false,
"workbench.iconTheme": "material-icon-theme",
"editor.stickyScroll.enabled": true,
"workbench.colorTheme": "Theme Flat",
"window.menuBarVisibility": "compact",
"vsicons.presets.hideExplorerArrows": true,
"outline.showArrays": false,
"outline.showBooleans": false,
"files.exclude": {
".vs": true,
".vscode": true,
"**/.config": true,
"**/.vs": true,
"**/bin": true,
"**/obj": true,
"**/StrykerOutput": true,
"**/TestResults": true,
"bin/**": true,
"obj": true,
"wwwroot/js": true,
"wwwroot/lib": true
},
"cSpell.userWords": [
"Antiforgery",
"Burgyn",
"hmac",
"HMACSHA",
"Mapster",
"Martiniak"
],
"postfix.languages": [
"csharp",
"javascript",
"typescript",
"javascriptreact",
"typescriptreact"
],
"cSpell.showAutocompleteSuggestions": true,
"omnisharp.enableRoslynAnalyzers": true,
"editor.tabCompletion": "on",
"omnisharp.enableAsyncCompletion": true,
"omnisharp.enableImportCompletion": true,
"smartsemicolon.autoLineChange": false,
"[css]": {
"editor.defaultFormatter": "aeschli.vscode-css-formatter"
},
"[xml]": {
"editor.defaultFormatter": "redhat.vscode-xml"
},
"[javascript]": {
"editor.defaultFormatter": "vscode.typescript-language-features"
},
"editor.rulers": [
{
"column": 130,
"color": "#ff9900"
}
],
"gitlens.codeLens.enabled": false,
"gitlens.showWelcomeOnInstall": false
}