This repository has been archived by the owner on Jan 26, 2023. It is now read-only.
forked from blamattina/dotfiles
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathvscode-settings
61 lines (61 loc) · 1.95 KB
/
vscode-settings
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
// Place your settings in this file to overwrite the default settings
{
"editor.fontSize": 14,
"editor.tabSize": 2,
"editor.renderWhitespace": "boundary",
"editor.minimap.enabled": false,
"editor.cursorStyle": "block",
"editor.formatOnType": true,
"editor.snippetSuggestions": "top",
"editor.renderIndentGuides": true,
"editor.wordWrap": "off",
"editor.formatOnSave": false,
"editor.cursorBlinking": "solid",
"javascript.format.insertSpaceAfterFunctionKeywordForAnonymousFunctions": false,
"workbench.editor.enablePreviewFromQuickOpen": false,
"window.zoomLevel": 1,
"workbench.activityBar.visible": false,
"files.trimTrailingWhitespace": true,
"emmet.syntaxProfiles": {
"javascript": "jsx"
},
"files.exclude": {
"**/.git": true,
"**/amd_dist/**": true,
"**/.DS_Store": true,
"**/node_modules/**": true,
"**/yui_modules": true,
"st4/admin/**": true,
"st4/countdown/**": true,
"st4/extranet/**": true,
"st4/svg/**": true,
"**/.history/**": true
},
"files.watcherExclude": {
"**/.git/objects/**": true,
"**/node_modules/**": true,
"**/amd_dist/**": true,
"**/yui_modules/**": true,
"/yui_modules/**": true,
"st4/admin/**": true,
"st4/countdown/**": true,
"st4/extranet/**": true,
"st4/svg/**": true
},
"window.title": "${activeEditorLong}",
"window.newWindowDimensions": "inherit",
"workbench.sideBar.location": "left",
"eslint.autoFixOnSave": true,
"eslint.options": {
"rulePaths": [
"/Users/duhl/git/sync/resources/grunt_tasks/eslint/rules"
]
},
"prettier.singleQuote": true,
"php.validate.executablePath": "/usr/local/bin/php",
"files.eol": "\n",
"phpcs.standard": "/Users/duhl/git/sync/php/non-web/standardscheck/CSNStores",
"prettier.printWidth": 80,
"phpcs.enable": false,
"workbench.startupEditor": "none"
}