1234567891011121314151617181920212223242526272829303132333435363738 |
- {
- "javascript.preferences.importModuleSpecifier": "relative",
- "typescript.tsdk": "node_modules/typescript/lib",
- "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",
- },
- "((//\\s*|/\\*\\s*)?#region ([^\\S\\r\\n]*[\\(\\)\\w,.\\-_&+#*'\"/:]+)*)": { //#region test: (abc):
- "backgroundColor": "#5df",
- "color": "#000",
- "overviewRulerColor": "#5df",
- },
- "((<!--\\s*)?</?\\{\\{[A-Z_-]+\\}\\}>(\\s*-->)?)": { // <!-- <{{FOO}}> --> and <!-- </{{FOO}}> --> or <{{BAR}}> and </{{BAR}}>
- "backgroundColor": "#9af",
- "overviewRulerColor": "#9af",
- "color": "#000",
- },
- "(#?(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",
- },
- },
- }
|