Advertisement
Guest User

Untitled

a guest
Oct 22nd, 2019
200
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 7.20 KB | None | 0 0
  1. {
  2. "editor.tabSize": 2,
  3. "editor.insertSpaces": true,
  4. "editor.detectIndentation": false,
  5. "editor.formatOnSave": false,
  6. // "css.fileExtensions": [
  7. // "css",
  8. // "scss",
  9. // "less"
  10. // ],
  11. "editor.quickSuggestions": {
  12. "other": true,
  13. "comments": true,
  14. "strings": true
  15. },
  16. "explorer.confirmDelete": false,
  17. "terminal.integrated.cursorStyle": "underline",
  18. "terminal.integrated.cursorBlinking": true,
  19. "terminal.integrated.copyOnSelection": true,
  20. "terminal.integrated.drawBoldTextInBrightColors": true,
  21. "editor.formatOnPaste": true,
  22. "javascript.format.enable": false,
  23. "tslint.alwaysShowRuleFailuresAsWarnings": true,
  24. "javascript.validate.enable": false,
  25. "eslint.autoFixOnSave": true,
  26. "eslint.alwaysShowStatus": true,
  27. "files.autoSave": "onFocusChange",
  28. "explorer.confirmDragAndDrop": false,
  29. "editor.smoothScrolling": true,
  30. "prettier.singleQuote": true,
  31. "prettier.trailingComma": "es5",
  32. "prettier.bracketSpacing": true,
  33. "liveServer.settings.donotShowInfoMsg": true,
  34. "editor.multiCursorModifier": "alt",
  35. "editor.selectionClipboard": false,
  36. "beautify.language": {
  37. "js": {
  38. },
  39. "css": [
  40. ],
  41. "html": [
  42. "htm",
  43. "html",
  44. "php",
  45. "erb",
  46. ],
  47. },
  48. "beautify.config": {
  49. "html": {
  50. "wrap_attributes_indent_size": 80,
  51. "wrap_attributes": "auto",
  52. "indent_head_inner_html": true
  53. },
  54. "brace_style": "none",
  55. "comma_first": true,
  56. },
  57. "html.format.endWithNewline": true,
  58. "html.format.indentHandlebars": true,
  59. "html.format.preserveNewLines": true,
  60. "html.autoClosingTags": true,
  61. "html.format.wrapLineLength": 80,
  62. "editor.fontLigatures": true,
  63. "editor.fontFamily": "Fira Code, Courier",
  64. "editor.lineHeight": 25,
  65. "editor.letterSpacing": 0.5,
  66. "files.trimTrailingWhitespace": true,
  67. "editor.fontWeight": "500",
  68. "telemetry.enableTelemetry": false,
  69. "editor.fontSize": 12,
  70. "editor.renderWhitespace": "all",
  71. "html.format.maxPreserveNewLines": 1,
  72. "emmet.includeLanguages": {
  73. "blade": "html",
  74. },
  75. "html.suggest.html5": true,
  76. "todohighlight.isEnable": true,
  77. "todohighlight.isCaseSensitive": true,
  78. "todohighlight.keywords": [{
  79. "text": "NOTE:",
  80. "color": "#ecf0f1",
  81. "border": "1px solid #2980b9",
  82. "borderRadius": "4px",
  83. "backgroundColor": "#3498db",
  84. },
  85. {
  86. "text": "HACK:",
  87. "color": "#ecf0f1",
  88. "border": "1px solid #8e44ad",
  89. "borderRadius": "4px",
  90. "backgroundColor": "#9b59b6",
  91. },
  92. {
  93. "text": "FIXME:",
  94. "color": "#ecf0f1",
  95. "border": "1px solid #f39c12",
  96. "borderRadius": "4px",
  97. "backgroundColor": "#f1c40f",
  98. },
  99. {
  100. "text": "BUG:",
  101. "color": "#ecf0f1",
  102. "border": "1px solid #c0392b",
  103. "borderRadius": "4px",
  104. "backgroundColor": "#e74c3c",
  105. },
  106. {
  107. "text": "TODO:",
  108. "color": "#ecf0f1",
  109. "border": "1px solid #27ae60",
  110. "borderRadius": "4px",
  111. "backgroundColor": "#2ecc71",
  112. }],
  113. "todohighlight.keywordsPattern": "@(TODO|FIXME|BUG|NOTE|HACK)", //highlight `TODO:`,`FIXME:` or content between parentheses
  114. "todohighlight.include": [
  115. "**/*.js",
  116. "**/*.jsx",
  117. "**/*.ts",
  118. "**/*.tsx",
  119. "**/*.html",
  120. "**/*.php",
  121. "**/*.css",
  122. "**/*.scss"
  123. ],
  124. "todohighlight.exclude": [
  125. "**/node_modules/**",
  126. "**/bower_components/**",
  127. "**/dist/**",
  128. "**/build/**",
  129. "**/.vscode/**",
  130. "**/.github/**",
  131. "**/_output/**",
  132. "**/*.min.*",
  133. "**/*.map",
  134. "**/.next/**"
  135. ],
  136. "todohighlight.maxFilesForSearch": 5120,
  137. "todohighlight.toggleURI": false,
  138. "liveServer.settings.donotVerifyTags": true,
  139. "window.titleBarStyle": "custom",
  140. "php.validate.enable": true,
  141. "javascript.updateImportsOnFileMove.enabled": "always",
  142. "git.enableSmartCommit": true,
  143. "window.zoomLevel": 0,
  144. "terminal.integrated.windowsEnableConpty": true,
  145. "editor.suggestSelection": "recentlyUsedByPrefix",
  146. "breadcrumbs.enabled": true,
  147. "editor.suggest.showIcons": true,
  148. "git.confirmSync": false,
  149. "editor.suggest.snippetsPreventQuickSuggestions": true,
  150. "editor.acceptSuggestionOnEnter": "on",
  151. "editor.quickSuggestionsDelay": 10,
  152. "editor.suggestOnTriggerCharacters": true,
  153. "editor.suggest.localityBonus": true,
  154. "editor.wordBasedSuggestions": true,
  155. "editor.parameterHints.enabled": true,
  156. "workbench.settings.useSplitJSON": true,
  157. "editor.renderControlCharacters": true,
  158. "workbench.iconTheme": "vscode-great-icons",
  159. "[json]": {
  160. "editor.defaultFormatter": "HookyQR.beautify"
  161. },
  162. "[vue]": {
  163. "editor.defaultFormatter": "octref.vetur"
  164. },
  165. "[jsonc]": {
  166. "editor.defaultFormatter": "HookyQR.beautify"
  167. },
  168. "[scss]": {
  169. "editor.defaultFormatter": "esbenp.prettier-vscode"
  170. },
  171. "editor.mouseWheelZoom": true,
  172. "workbench.colorTheme": "Night Owl (No Italics)",
  173. "[html]": {
  174. "editor.defaultFormatter": "HookyQR.beautify",
  175. "editor.occurrencesHighlight": false,
  176. "editor.formatOnSave": true,
  177. },
  178. "[css]": {
  179. "editor.defaultFormatter": "HookyQR.beautify"
  180. },
  181. "vsicons.projectDetection.autoReload": true,
  182. "sftp.debug": true,
  183. "better-comments.multilineComments": true,
  184. "better-comments.highlightPlainText": false,
  185. "better-comments.tags": [
  186. {
  187. "tag": "!",
  188. "color": "#FF2D00",
  189. "strikethrough": false,
  190. "backgroundColor": "transparent"
  191. },
  192. {
  193. "tag": "?",
  194. "color": "#3498DB",
  195. "strikethrough": false,
  196. "backgroundColor": "transparent"
  197. },
  198. {
  199. "tag": "//",
  200. "color": "#474747",
  201. "strikethrough": true,
  202. "backgroundColor": "transparent"
  203. },
  204. {
  205. "tag": "todo",
  206. "color": "#FF8C00",
  207. "strikethrough": false,
  208. "backgroundColor": "transparent"
  209. },
  210. {
  211. "tag": "*",
  212. "color": "#98C379",
  213. "strikethrough": false,
  214. "backgroundColor": "transparent"
  215. }],
  216. "eslint.validate": [
  217. {
  218. "language": "vue",
  219. "autoFix": true
  220. },
  221. // {
  222. // "language": "html",
  223. // "autoFix": true
  224. // },
  225. {
  226. "language": "javascript",
  227. "autoFix": true
  228. },
  229. {
  230. "language": "javascriptreact",
  231. "autoFix": true
  232. }
  233. ],
  234. "vetur.format.defaultFormatter.js": "vscode-typescript",
  235. "vetur.format.defaultFormatter.html": "js-beautify-html",
  236. "javascript.format.insertSpaceBeforeFunctionParenthesis": true,
  237. "[javascript]": {
  238. "editor.defaultFormatter": "esbenp.prettier-vscode"
  239. },
  240. "css.completion.triggerPropertyValueCompletion": false,
  241. "apiElements.editor.adjustOptions": true,
  242. "apiElements.validation.debounce": 1000,
  243. "apiElements.parser.requireBlueprintName": true,
  244. "javascript.implicitProjectConfig.checkJs": true,
  245. "gist.profileOptions": {
  246. "key":"0a46e43a029cddefeafed7cea74d8147700a9620"
  247. },
  248. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement