-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsettings.json
100 lines (97 loc) · 3.25 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
// Place your settings in this file to overwrite the default settings
{
"breadcrumbs.enabled": true,
"breadcrumbs.symbolPath": "last",
"files.trimTrailingWhitespace": true,
"files.exclude": {
"**/.git": true,
"**/.svn": true,
"**/.hg": true,
"**/.DS_Store": true,
},
"editor.renderWhitespace": "all",
"editor.trimAutoWhitespace": true,
"editor.minimap.enabled": false,
"editor.minimap.renderCharacters": false,
"editor.rulers": [
100
],
"editor.formatOnPaste": true,
"search.exclude": {
"**/node_modules": true,
"**/bower_components": true,
"**/dist": true,
"**/build": true,
"**/swagger*": true,
"public/api-client.html": true
},
"workbench.iconTheme": null,
"workbench.colorTheme": "One Dark Pro Vivid",
"workbench.activityBar.visible": false,
"explorer.openEditors.visible": 0,
"editor.cursorStyle": "block-outline",
"editor.cursorBlinking": "solid",
"editor.tabSize": 2,
"workbench.sideBar.location": "left",
"extensions.ignoreRecommendations": false,
"php.suggest.basic": false,
"php.validate.enable": true,
"php.validate.run": "onType",
"php.validate.executablePath": "/usr/bin/php",
"gitlens.remotes": [
{
"type": "GitHub",
"domain": "git.corp.adobe.com",
"protocol": "https"
},
],
"gitlens.blame.ignoreWhitespace": true,
"gitlens.advanced.messages": {
"suppressCommitHasNoPreviousCommitWarning": false,
"suppressCommitNotFoundWarning": false,
"suppressFileNotUnderSourceControlWarning": false,
"suppressGitVersionWarning": false,
"suppressLineUncommittedWarning": false,
"suppressNoRepositoryWarning": false,
},
"javascript.updateImportsOnFileMove.enabled": "never",
"window.nativeTabs": true,
"editor.fontWeight": "900",
"javascript.preferences.quoteStyle": "single",
"git.autofetch": true,
"files.watcherExclude": {
"**/include/Zend/**": true
},
"editor.wordWrapColumn": 100,
"emmet.includeLanguages": {
"javascript": "javascriptreact"
},
"editor.codeActionsOnSave": {
"source.fixAll.eslint": false,
},
"terminal.integrated.defaultProfile.osx": "zsh",
"typescript.tsserver.log": "off",
"debug.javascript.debugByLinkOptions": "always",
"terminal.integrated.scrollback": 10000,
// Dan Abramov suggestions for Subliminal theme
// "editor.fontSize": 18,
// "editor.folding": false,
// "editor.hideCursorInOverviewRuler": true,
// "editor.lineHeight": 26,
// "editor.lineNumbers": "off",
// "editor.matchBrackets": false,
// "editor.minimap.enabled": false,
// "editor.occurrencesHighlight": false,
// "editor.overviewRulerBorder": false,
// "editor.renderIndentGuides": false,
// "gitlens.historyExplorer.enabled": true,
// "editor.renderLineHighlight": "none",
// "editor.scrollbar.horizontal": "hidden",
// "explorer.openEditors.visible": 0,
// "window.zoomLevel": 0,
// "workbench.activityBar.visible": false,
// "workbench.colorTheme": "Subliminal",
// "workbench.iconTheme": null,
// "workbench.editor.showIcons": false,
// "workbench.statusBar.visible": false,
}