mirror of
https://github.com/ascii-boxes/boxes.git
synced 2025-03-01 07:42:22 +01:00
51 lines
1.5 KiB
JSON
51 lines
1.5 KiB
JSON
{
|
|
"files.exclude": {
|
|
"**/.git": true,
|
|
"**/.idea": true,
|
|
"**/_site": true,
|
|
"**/_support": true,
|
|
"**/cmake-build-debug": true,
|
|
"**/coverage": true,
|
|
"**/flex_bison_*": true,
|
|
"**/out": true,
|
|
"**/pcre2-*": true,
|
|
"**/datagen/venv": true,
|
|
"**/datagen/**/__pycache__": true,
|
|
"**/datagen/**/*.egg-info": true,
|
|
"**/datagen/dist": true
|
|
},
|
|
"editor.autoClosingBrackets": "never",
|
|
"editor.dragAndDrop": false,
|
|
"editor.formatOnSave": false,
|
|
"editor.renderWhitespace": "selection",
|
|
"editor.rulers": [120],
|
|
"editor.wordWrapColumn": 120,
|
|
"files.encoding": "utf8",
|
|
|
|
"todo-tree.highlights.defaultHighlight": {
|
|
"foreground": "red",
|
|
"rulerLane": "full"
|
|
},
|
|
"todo-tree.filtering.excludeGlobs": [
|
|
"**/out/**",
|
|
"**/build/**",
|
|
"**/.vscode/**",
|
|
"**/.github/**",
|
|
"**/_site/**",
|
|
"**/_support/**",
|
|
"**/flex_bison_*/**",
|
|
"**/pcre2-*/**",
|
|
"**/_sass/bootstrap-*/**",
|
|
"**/_sass/bootswatch-*/**",
|
|
"**/datagen/**/__pycache__/**",
|
|
"**/datagen/venv/**",
|
|
"**/datagen/**/*.egg-info/**",
|
|
"**/datagen/dist/**"
|
|
],
|
|
"todo-tree.general.statusBar": "total",
|
|
"todo-tree.general.tags": ["TODO", "FIXME", "CHECK"],
|
|
"todo-tree.regex.regex": "(//|#|<!--|\\{%\\-? comment \\-?%\\}|\"|/\\*|^\\s*\\*).*?($TAGS)",
|
|
"todo-tree.tree.expanded": true,
|
|
"todo-tree.tree.showCountsInTree": true
|
|
}
|