-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsettings.json
99 lines (99 loc) · 3 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
{
"files.insertFinalNewline": true,
"files.trimFinalNewlines": true,
"files.trimTrailingWhitespace": true,
"editor.fontSize": 16,
"editor.renderWhitespace": "all",
"editor.fontFamily": "'SourceHanCodeJP-Medium', 'Source Han Code JP', Consolas, 'Courier New', monospace",
"editor.formatOnType": true,
"editor.codeActionsOnSave": {
"source.fixAll.stylelint": true,
"source.fixAll.eslint": true
},
"editor.tabSize": 2,
"editor.renderLineHighlight": "all",
"editor.renderControlCharacters": true,
"editor.cursorBlinking": "smooth",
"editor.smoothScrolling": true,
"editor.minimap.showSlider": "always",
"window.openFoldersInNewWindow": "on",
"window.title": "${activeEditorMedium}${separator}${rootName}",
"workbench.editor.labelFormat": "short",
"workbench.editor.tabSizing": "shrink",
"breadcrumbs.enabled": true,
"html.autoClosingTags": false,
"html.format.extraLiners": "",
"html.format.maxPreserveNewLines": 2,
"html.format.wrapLineLength": 0,
"html.format.unformatted": null,
"html.format.contentUnformatted": "pre, code, textarea, title, h1, h2, h3, h4, h5, h6, p",
"css.validate": false,
"less.validate": false,
"scss.validate": false,
"git.ignoreMissingGitWarning": true,
"emmet.showSuggestionsAsSnippets": true,
"emmet.triggerExpansionOnTab": true,
"emmet.variables": {
"lang": "ja"
},
"workbench.colorTheme": "Cobalt2",
"explorer.confirmDelete": false,
"javascript.format.enable": false,
"php.validate.executablePath": "",
"workbench.iconTheme": "material-icon-theme",
"explorer.confirmDragAndDrop": false,
"[scss]": {
"editor.formatOnSave": false
},
"[vue]": {
"editor.formatOnSave": false
},
"emmet.excludeLanguages": [
"markdown"
],
"auto-close-tag.activationOnLanguage": [
"xml",
"php",
"blade",
"ejs",
"jinja",
"javascript",
"javascriptreact",
"typescript",
"typescriptreact",
"plaintext",
"markdown",
"vue",
"liquid",
"erb",
"lang-cfml",
"cfml",
"HTML (EEx)",
"HTML (Eex)",
"plist"
],
"auto-rename-tag.activationOnLanguage": [
"*"
],
"diffEditor.ignoreTrimWhitespace": false,
"settingsSync.ignoredExtensions": [],
"editor.formatOnPaste": true,
"eslint.packageManager": "yarn",
"vetur.format.defaultFormatterOptions": {
"js-beautify-html": {
"wrap_attributes": "force-expand-multiline"
},
"prettyhtml": {
"printWidth": 100,
"singleQuote": false,
"wrapAttributes": false,
"sortAttributes": false,
}
},
"prettier.packageManager": "yarn",
"editor.formatOnSave": true,
"prettier.vueIndentScriptAndStyle": true,
"editor.suggestSelection": "first",
"vsintellicode.modify.editor.suggestSelection": "automaticallyOverrodeDefaultValue",
"javascript.updateImportsOnFileMove.enabled": "never",
}