12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- {
- "javascript.preferences.importModuleSpecifier": "relative",
- "typescript.tsdk": "node_modules/typescript/lib",
- "search.exclude": {
- "**/BetterYTM.user.js": true,
- },
- "files.associations": {
- "*.env": "dotenv",
- "*.env.template": "dotenv",
- },
- "editor.tabSize": 2,
- // requires extension: fabiospampinato.vscode-highlight
- "highlight.regexes": {
- "(TODO(\\((\\s|\\d|\\w|[,.-_+*&])+\\))?:?)": { // TODO: or TODO or TODO(xy): but not todo or todo:
- "backgroundColor": "#ed0",
- "color": "black",
- "overviewRulerColor": "#ed0",
- },
- "(#MARKER)": { // #MARKER test
- "backgroundColor": "#c31",
- "color": "#fff",
- "isWholeLine": true,
- "overviewRulerColor": "#c31",
- },
- "(#SECTION ([^\\S\\r\\n]*[\\w,.\\-_&]+)*[:]*)": { // #SECTION test, 123 & foo
- "backgroundColor": "#44f",
- "color": "white",
- "overviewRulerColor": "#44f",
- },
- "((<!--\\s*)?</?\\{\\{[A-Z_-]+\\}\\}>(\\s*-->)?)": { // <!-- <{{FOO}}> --> and <!-- </{{FOO}}> --> or <{{BAR}}> and </{{BAR}}>
- "overviewRulerColor": "#2ae",
- "backgroundColor": "#2ae",
- "color": "#002",
- },
- "(#?(DEBUG|DBG)#?)": { // #DEBUG or DEBUG or #DBG or #DBG#
- "backgroundColor": "#ff0",
- "color": "blue",
- "overviewRulerColor": "#ff0",
- },
- "(IMPORTANT:)": { // IMPORTANT:
- "backgroundColor": "#a22",
- "color": "#fff",
- },
- "(FIXME:)": { // FIXME:
- "backgroundColor": "#a22",
- "color": "#fff",
- "overviewRulerColor": "#752020",
- },
- },
- }
|