settings.json 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. {
  2. "highlight.regexes": { // REQUIRES EXTENSION: fabiospampinato.vscode-highlight
  3. "(((jsl|scl)\\.)?unused\\([a-zA-Z_,\\[\\]\\s\\-\":.]+\\);*)": [ // jsl.unused([some_var, some_other_var]); or scl.unused(xy);
  4. {
  5. "backgroundColor": "rgba(0, 0, 0, 0.2)",
  6. "color": "#f88"
  7. }
  8. ],
  9. "(#MARKER)": [ // #MARKER test
  10. {
  11. "backgroundColor": "#f41",
  12. "color": "#fff",
  13. "isWholeLine": true,
  14. "overviewRulerColor": "#f41"
  15. }
  16. ],
  17. "(#SECTION ([^\\S\\r\\n]*[\\w,.\\-_]+)*[:]*)": [ // #SECTION test, 123
  18. {
  19. "backgroundColor": "#44f",
  20. "color": "white",
  21. "overviewRulerColor": "#44f"
  22. }
  23. ],
  24. "(#DEBUG#)": [ // #DEBUG#
  25. {
  26. "backgroundColor": "#ff0",
  27. "color": "blue",
  28. "overviewRulerColor": "#ff0"
  29. }
  30. ],
  31. "(<!--%#INSERT:[a-zA-Z0-9\\-]+#%-->|<!--%#INJECT:[a-zA-Z0-9\\-]+#%-->)": [ // <!--%#INSERT:TEST#%--> / <!--%#INJECT:TEST#%-->
  32. {
  33. "color": "orange",
  34. "fontStyle": "italic",
  35. "outline": "1px solid orange"
  36. }
  37. ],
  38. "(<%#INSERT:[a-zA-Z0-9\\-]+#%>|<%#INJECT:[a-zA-Z0-9\\-]+#%>)": [ // <%#INSERT:TEST#%> / <%#INJECT:TEST#%>
  39. {
  40. "color": "orange",
  41. "fontStyle": "italic",
  42. "outline": "1px solid orange"
  43. }
  44. ],
  45. },
  46. "npm-scripts.showStartNotification": false,
  47. // JokeAPI-specific:
  48. "files.exclude": { // hide files so they can't be opened in the IDE
  49. "docs/compiled": true, // to prevent accidentally changing the compiled documentation to only have it be overridden after the next compile
  50. "dev/madge": true, // the files don't need to be modified, they only serve as a distraction
  51. },
  52. "deno.enable": false
  53. }