1{
2
3 "workbench.activityBar.visible": true,
4 "workbench.statusBar.visible": true,
5 "workbench.sideBar.location": "left",
6 "workbench.startupEditor": "newUntitledFile",
7 "breadcrumbs.enabled": true,
8
9 "workbench.colorTheme": "OneDarkProVivid",
10 "workbench.colorCustomizations": {
11 "tab.activeBackground": "#282c34",
12 "activityBar.background": "#282c34",
13 "sideBar.background": "#282c34"
14 },
15
16 "workbench.iconTheme": "vscode-icons",
17 "vsicons.projectDetection.autoReload": true,
18
19 "editor.fontSize": 14,
20 "editor.fontFamily": "OperatorMono-Book,FiraCode,Menlo,Monaco,'CourierNew',monospace",
21 "editor.lineHeight": 30,
22 "editor.fontLigatures": true,
23 "editor.lineNumbers": "on",
24 "editor.minimap.enabled": false,
25 "editor.renderIndentGuides": false,
26 "editor.rulers": [120],
27 "editor.cursorStyle": "line",
28 "editor.quickSuggestions": {
29 "other": true,
30 "comments": true,
31 "strings": true
32 },
33 "editor.formatOnType": true,
34 "eslint.autoFixOnSave": true,
35 "editor.formatOnSave": true,
36 "files.trimTrailingWhitespace": true,
37 "files.insertFinalNewline": true,
38 "files.trimFinalNewlines": true,
39 "editor.largeFileOptimizations": false,
40
41 "liveServer.settings.donotVerifyTags": true,
42 "liveServer.settings.donotShowInfoMsg": true,
43 "liveServer.settings.CustomBrowser": "chrome",
44
45 "fileheader.Author": "ulyso",
46 "fileheader.LastModifiedBy": "ulyso",
47
48 "sync.gist": "your-gist-id",
49 "sync.quietSync": true,
50 "sync.removeExtensions": true,
51 "sync.syncExtensions": true,
52 "sync.autoDownload": true,
53 "sync.autoUpload": true,
54 "sync.forceDownload": false,
55
56 "git.autofetch": true,
57 "git.confirmSync": false,
58 "git.enableSmartCommit": true,
59 "files.autoSave": "afterDelay",
60 "vetur.format.defaultFormatter.html": "js-beautify-html",
61 "vetur.format.defaultFormatter.ts": "vscode-typescript",
62 "eslint.validate": [
63 "javascript",
64 "javascriptreact",
65 {
66 "language": "vue",
67 "autoFix": true
68 }
69 ],
70 "emmet.includeLanguages": {
71 "javascript": "javascriptreact",
72 "wxml": "html"
73 },
74 "files.associations": {
75 "*.cjson": "jsonc",
76 "*.wxss": "css",
77 "*.wxs": "javascript",
78 "*.js": "javascriptreact"
79 },
80 "todohighlight.isEnable": true,
81
82 "prettier.semi": false,
83 "prettier.jsxSingleQuote": true,
84 "prettier.singleQuote": true,
85 "files.exclude": {
86 "**/.classpath": true,
87 "**/.project": true,
88 "**/.settings": true,
89 "**/.factorypath": true
90 },
91 "editor.suggestSelection": "first",
92 "diffEditor.ignoreTrimWhitespace": false,
93 "svn.enableProposedApi": "none",
94 "[json]": {
95 "editor.defaultFormatter": "vscode.json-language-features"
96 },
97 "[html]": {
98 "editor.defaultFormatter": "vscode.html-language-features"
99 },
100 "javascript.preferences.quoteStyle": "single",
101 "javascript.updateImportsOnFileMove.enabled": "always",
102 "[javascriptreact]": {
103 "editor.defaultFormatter": "esbenp.prettier-vscode"
104 },
105
106 "tslint.autoFixOnSave": true,
107 "typescript.preferences.quoteStyle": "single",
108 "[typescript]": {
109 "editor.defaultFormatter": "vscode.typescript-language-features"
110 },
111 "[typescriptreact]": {
112 "editor.defaultFormatter": "esbenp.prettier-vscode"
113 },
114 "typescript.updateImportsOnFileMove.enabled": "always",
115
116 "phpcs.standard": "PSR2",
117 "phpcs.ignorePatterns": [
118 "bootstrap/cache",
119 "database/migrations",
120 "vendor/",
121 "storage/framework",
122 "tests"
123 ],
124 "[php]": {
125 "editor.defaultFormatter": "bmewburn.vscode-intelephense-client"
126 }
127}
128