-
Notifications
You must be signed in to change notification settings - Fork 1
/
vscode.settings.json
102 lines (102 loc) · 3.25 KB
/
vscode.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
{
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.formatOnSave": true,
"editor.detectIndentation": true,
"editor.lightbulb.enabled": false,
"editor.fontFamily": "'Dank Mono', Menlo, Monaco, 'Courier New', monospace",
"editor.fontLigatures": false,
"editor.rulers": [80, 120],
"editor.snippetSuggestions": "none",
"editor.wordBasedSuggestions": false,
"editor.suggest.localityBonus": true,
"editor.acceptSuggestionOnCommitCharacter": false,
"[javascript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.suggestSelection": "recentlyUsed",
"editor.suggest.showKeywords": false
},
"[typescript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.suggestSelection": "recentlyUsed",
"editor.suggest.showKeywords": false
},
"editor.fontSize": 12,
"editor.tabSize": 2,
"editor.hover.enabled": true,
"editor.glyphMargin": false,
"files.exclude": {
"USE_GITIGNORE": true
},
"files.associations": {
"*.md": "mdx"
},
"files.defaultLanguage": "{activeEditorLanguage}",
"javascript.suggest.autoImports": false,
"javascript.validate.enable": false,
"search.exclude": {
"**/node_modules": true,
"**/bower_components": true,
"**/coverage": true,
"**/dist": true,
"**/build": true,
"**/.build": true,
"**/.gh-pages": true
},
"editor.codeActionsOnSave": {
"source.fixAll.eslint": false
},
"eslint.validate": [
"javascript",
"javascriptreact",
"typescript",
"typescriptreact"
],
"terminal.integrated.scrollback": 10000,
"explorer.openEditors.visible": 0,
"editor.lineNumbers": "on",
"workbench.colorTheme": "Night Owl",
"workbench.iconTheme": "material-icon-theme",
"workbench.sideBar.location": "left",
"workbench.startupEditor": "none",
"workbench.panel.defaultLocation": "right",
"workbench.editor.limit.enabled": true,
"workbench.editor.limit.perEditorGroup": false,
"workbench.editor.limit.value": 18,
"debug.javascript.codelens.npmScripts": "never",
"grunt.autoDetect": "off",
"npm.runSilent": true,
"gulp.autoDetect": "off",
"explorer.confirmDragAndDrop": false,
"atomKeymap.promptV3Features": true,
"editor.multiCursorModifier": "ctrlCmd",
"editor.formatOnPaste": false,
"editor.minimap.enabled": false,
"editor.cursorSmoothCaretAnimation": true,
"editor.smoothScrolling": true,
"php.suggest.basic": false,
"typescript.suggest.autoImports": false,
"editor.suggestSelection": "first",
"vsintellicode.modify.editor.suggestSelection": "automaticallyOverrodeDefaultValue",
"[jsonc]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"eslint.packageManager": "npm",
"npm.packageManager": "npm",
"prettier.bracketSpacing": false,
"prettier.proseWrap": "always",
"prettier.semi": false,
"prettier.singleQuote": true,
"prettier.trailingComma": "all",
"prettier.arrowParens": "avoid",
"prettier.useEditorConfig": false,
"editor.acceptSuggestionOnEnter": "off",
"editor.tokenColorCustomizations": {
"textMateRules": []
},
"extensions.autoUpdate": "onlyEnabledExtensions",
"workbench.activityBar.visible": false,
"terminal.integrated.fontFamily": "Menlo for Powerline",
"window.zoomLevel": 1,
"terminal.integrated.fontSize": 11,
"editor.wordWrap": "on"
}