123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 |
- {
- "javascript.preferences.importModuleSpecifier": "relative",
- "typescript.tsdk": "node_modules/typescript/lib",
- "search.exclude": {
- "**/*.user.js": true,
- "**/BetterYTM.css": true,
- },
- "files.associations": {
- "*.env": "dotenv",
- "*.env.template": "dotenv",
- },
- "editor.tabSize": 2,
- "json.schemas": [
- {
- "fileMatch": ["**/locales.json"],
- "url": ".vscode/schemas/locales.schema.json"
- },
- {
- "fileMatch": ["**/require.json"],
- "url": ".vscode/schemas/require.schema.json"
- },
- {
- "fileMatch": ["**/resources.json"],
- "url": ".vscode/schemas/resources.schema.json"
- },
- {
- "fileMatch": ["**/translations/*-*.json"],
- "url": ".vscode/schemas/translation.schema.json"
- },
- ],
- // 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 foo: (@bar):
- "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": "#ff0",
- "color": "blue",
- "overviewRulerColor": "#ff0",
- },
- "(IMPORTANT:)": { // IMPORTANT:
- "backgroundColor": "#a22",
- "color": "#fff",
- },
- "(FIXME:)": { // FIXME:
- "backgroundColor": "#a22",
- "color": "#fff",
- "overviewRulerColor": "#752020",
- },
- },
- }
|