1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- {
- "typescript.tsdk": "node_modules/typescript/lib",
- "typescript.preferences.importModuleSpecifier": "non-relative",
- "javascript.preferences.importModuleSpecifier": "non-relative",
- "typescript.preferences.importModuleSpecifierEnding": "js",
- "javascript.preferences.importModuleSpecifierEnding": "js",
- "npm.packageManager": "pnpm",
- "search.exclude": {
- "**/*.user.js": true,
- "**/BetterYTM.css": true,
- },
- "files.associations": {
- "*.env": "dotenv",
- "*.env.template": "dotenv",
- },
- "editor.tabSize": 2,
- "deno.enable": false,
- // 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": "#35b5d0",
- "color": "#000",
- "overviewRulerColor": "#35b5d0",
- },
- "((<!--\\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": "#ff3",
- "color": "blue",
- "overviewRulerColor": "#ff3",
- },
- "(IMPORTANT:)": { // IMPORTANT:
- "backgroundColor": "#f34",
- "color": "#000",
- },
- "(FIXME:)": { // FIXME:
- "backgroundColor": "#811",
- "color": "#fff",
- "overviewRulerColor": "#811",
- },
- },
- }
|