Advertisement
Guest User

Untitled

a guest
Jun 23rd, 2018
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.42 KB | None | 0 0
  1. {
  2. "workbench.colorTheme": "Cobalt2",
  3. "editor.tabSize": 2,
  4. "editor.detectIndentation": false,
  5. "editor.tabCompletion": true,
  6. "emmet.triggerExpansionOnTab": false,
  7. "editor.fontFamily": "OperatorMono-Book",
  8. "editor.lineHeight": 25,
  9. "editor.fontLigatures": true,
  10. "eslint.autoFixOnSave": true,
  11. "editor.letterSpacing": 0.5,
  12. "files.trimTrailingWhitespace": true,
  13. "editor.fontWeight": "400",
  14. "prettier.singleQuote": true,
  15. "html.format.wrapAttributes": "force",
  16. "prettier.trailingComma": "none",
  17. "vetur.format.defaultFormatterOptions": {
  18. "js-beautify-html": {
  19. "wrap_attributes": "auto"
  20. }
  21. },
  22. "editor.renderWhitespace": "all",
  23. "vetur.format.defaultFormatter.html": "js-beautify-html",
  24. // Run the linter on save (onSave) or on type (onType)
  25. "eslint.run": "onSave",
  26. "[vue]": {},
  27. "prettier.disableLanguages": [
  28. "vue"
  29. ],
  30. "editor.formatOnType": true,
  31. "vetur.format.defaultFormatter.js": "prettier",
  32. "editor.formatOnSave": true,
  33. "prettier.semi": false,
  34. "typescript.format.insertSpaceBeforeFunctionParenthesis": true,
  35. // Defines space handling before function argument parentheses. Requires TypeScript >= 2.1.5.
  36. "javascript.format.insertSpaceBeforeFunctionParenthesis": true,
  37. "javascript.format.insertSpaceAfterOpeningAndBeforeClosingNonemptyParenthesis": true,
  38. "prettier.arrowParens": "avoid",
  39. "typescript.format.insertSpaceAfterOpeningAndBeforeClosingNonemptyParenthesis": true,
  40. "prettier.bracketSpacing": true,
  41. "files.autoSave": "off",
  42. "editor.tokenColorCustomizations": {
  43. "textMateRules": [ {
  44. "name": "Comment",
  45. "scope": [
  46. "comment",
  47. "punctuation.definition.comment"
  48. ],
  49. "settings": {
  50. "fontStyle": "italic",
  51. }
  52. },
  53.  
  54. {
  55. "name": "Keyword, Storage",
  56. "scope": [
  57. "Keyword",
  58. "Storage"
  59. ],
  60. "settings": {
  61. "fontStyle": "italic"
  62. }
  63. },
  64.  
  65. {
  66. "name": "Keyword Control",
  67. "scope": [
  68. "keyword.control"
  69. ],
  70. "settings": {
  71. "fontStyle": "italic"
  72. }
  73. },
  74.  
  75. {
  76. "scope": "entity.other.attribute-name",
  77. "settings": {
  78. "fontStyle": "italic",
  79. }
  80. },
  81.  
  82.  
  83. {
  84. "name": "entity.name.method.js",
  85. "scope": [
  86. "entity.name.method.js"
  87. ],
  88. "settings": {
  89. "fontStyle": "italic",
  90. }
  91. },
  92.  
  93.  
  94. {
  95. "name": "Language methods",
  96. "scope": [
  97. "variable.language"
  98. ],
  99. "settings": {
  100. "fontStyle": "italic",
  101. }
  102. },
  103.  
  104.  
  105. {
  106. "name": "HTML Attributes",
  107. "scope": [
  108. "text.html.basic entity.other.attribute-name.html",
  109. "text.html.basic entity.other.attribute-name"
  110. ],
  111. "settings": {
  112. "fontStyle": "italic",
  113. //"foreground": "#FFCB6B"
  114. }
  115. },
  116.  
  117.  
  118. {
  119. "name": "Decorators",
  120. "scope": [
  121. "tag.decorator.js entity.name.tag.js",
  122. "tag.decorator.js punctuation.definition.tag.js"
  123. ],
  124. "settings": {
  125. "fontStyle": "italic",
  126. //"foreground": "#82AAFF"
  127. }
  128. },
  129.  
  130.  
  131. {
  132. "name": "ES7 Bind Operator",
  133. "scope": [
  134. "source.js constant.other.object.key.js string.unquoted.label.js"
  135. ],
  136. "settings": {
  137. "fontStyle": "italic",
  138. //"foreground": "#FF5370"
  139. }
  140. },
  141.  
  142. {
  143. "name": "Markup - Italic",
  144. "scope": [
  145. "markup.italic"
  146. ],
  147. "settings": {
  148. "fontStyle": "italic",
  149. //"foreground": "#f07178"
  150. }
  151. },
  152.  
  153.  
  154. {
  155. "name": "Markup - Bold-Italic",
  156. "scope": [
  157. "markup.bold markup.italic",
  158. "markup.italic markup.bold",
  159. "markup.quote markup.bold",
  160. "markup.bold markup.italic string",
  161. "markup.italic markup.bold string",
  162. "markup.quote markup.bold string"
  163. ],
  164. "settings": {
  165. "fontStyle": "bold",
  166. //"foreground": "#f07178"
  167. }
  168. },
  169.  
  170. {
  171. "name": "Markup - Quote",
  172. "scope": [
  173. "markup.quote"
  174. ],
  175. "settings": {
  176. "fontStyle": "italic",
  177. //"foreground": ""
  178. }
  179. }
  180. ]
  181. },
  182. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement