-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsettings.json
More file actions
129 lines (128 loc) · 3.85 KB
/
settings.json
File metadata and controls
129 lines (128 loc) · 3.85 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
{
"workbench.editor.scrollToSwitchTabs": true,
"workbench.iconTheme": "vscode-icons",
"workbench.colorTheme": "Material Theme High Contrast",
"workbench.colorCustomizations": {},
"java.home": "C:\\Program Files\\Java\\jdk-14.0.1",
"java.help.firstView": "gettingStarted",
"editor.suggestSelection": "first",
"vsintellicode.modify.editor.suggestSelection": "automaticallyOverrodeDefaultValue",
"java.semanticHighlighting.enabled": true,
"[html]": {
"editor.defaultFormatter": "vscode.html-language-features"
},
"git.autofetch": true,
"diffEditor.ignoreTrimWhitespace": false,
"[json]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"scm.alwaysShowRepositories": true,
"debug.javascript.debugByLinkOptions": "always",
"bracket-pair-colorizer-2.colors": ["Gold", "Orchid", "LightSkyBlue"],
"editor.wordWrap": "on",
"editor.wrappingIndent": "indent",
"colorize.languages": [
"javascript",
"html",
"css",
"sass",
"scss",
"less",
"postcss",
"sss",
"stylus",
"xml",
"svg"
],
"html.format.endWithNewline": true,
"html.format.wrapLineLength": 0,
"html.format.maxPreserveNewLines": 1,
"gitlens.hovers.annotations.over": "annotation",
"[javascript]": {
"editor.defaultFormatter": "vscode.typescript-language-features"
},
"liveServer.settings.host": "localhost",
"todo-tree.tree.showScanModeButton": false,
// "terminal.integrated.shellArgs.windows": null,
"todo-tree.highlights.defaultHighlight": {
"icon": "alert",
"type": "tag",
"foreground": "red",
"background": "yellow",
"opacity": 50,
"iconColour": "blue"
},
"todo-tree.highlights.customHighlight": {
"TODO": {
"icon": "check",
"gutterIcon": true
},
"FIXME": {
"foreground": "black",
"iconColour": "yellow",
"gutterIcon": true
}
},
"python.languageServer": "Pylance",
"workbench.editor.wrapTabs": true,
"editor.formatOnType": true,
"workbench.editorAssociations": {
"*.ipynb": "jupyter-notebook"
},
"[python]": {
"editor.defaultFormatter": "ms-python.python"
},
"azure.resourceFilter": [
"3ea4ee53-5e07-4a30-bd0d-e464769a4f4f/090958dd-c88f-4700-8306-ebb2cfacac0a",
"cb79aba8-f7c0-4524-ab1d-b5891f4db0fa/bf7f306b-41c5-444a-92fa-a89cd428d057"
],
"gitlens.gitCommands.skipConfirmations": [
"fetch:command",
"stash-push:command",
"switch:command",
"push:command"
],
"files.associations": {
"*.mdx": "mdx"
},
"yaml.schemas": {
"file:///c%3A/Users/AnweshG/.vscode/extensions/atlassian.atlascode-2.9.1/resources/schemas/pipelines-schema.json": "bitbucket-pipelines.yml"
},
"atlascode.jira.jqlList": [
{
"id": "08c1b117-32ad-4bb6-a2a5-6d86cca8c7c2",
"enabled": true,
"name": "My vconstructssc Issues",
"query": "assignee = currentUser() AND resolution = Unresolved ORDER BY lastViewed DESC",
"siteId": "0612bd2e-152e-4209-bd0c-f9342c1a338a",
"monitor": true
}
],
"redhat.telemetry.enabled": false,
"notebook.cellToolbarLocation": {
"default": "right",
"jupyter-notebook": "left"
},
"[markdown]": {
"editor.formatOnSave": false
},
"[jsonc]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"editor.largeFileOptimizations": false,
"editor.formatOnSave": true,
"python.terminal.executeInFileDir": true,
"python.formatting.provider": "black",
"terminal.integrated.defaultProfile.windows": "C:\\WINDOWS\\System32\\cmd.exe (migrated)",
"vscode-edge-devtools.mirrorEdits": true,
"terminal.integrated.profiles.windows": {
"C:\\WINDOWS\\System32\\cmd.exe (migrated)": {
"path": "C:\\WINDOWS\\System32\\cmd.exe",
"args": ["-ExecutionPolicy", "Bypass"]
}
},
"svelte.enable-ts-plugin": true,
"workbench.sideBar.location": "right",
"editor.renderControlCharacters": true,
"editor.showFoldingControls": "always"
}