settings.json 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  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. "(#SECTION)": [ // #SECTION
  25. {
  26. "backgroundColor": "#44f",
  27. "color": "white",
  28. "overviewRulerColor": "#44f"
  29. }
  30. ],
  31. "(#DEBUG#)": [ // #DEBUG#
  32. {
  33. "backgroundColor": "#ff0",
  34. "color": "blue",
  35. "overviewRulerColor": "#ff0"
  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. }