mirror of
https://github.com/ascii-boxes/boxes.git
synced 2024-12-12 18:01:14 +01:00
55 lines
1.4 KiB
JSON
55 lines
1.4 KiB
JSON
{
|
|
"files.exclude": {
|
|
"**/.git": true,
|
|
"**/.idea": true,
|
|
"**/_site": true,
|
|
"**/_support": true,
|
|
"**/cmake-build-debug": true,
|
|
"**/coverage": true,
|
|
"**/out": true,
|
|
"**/flex_bison_*": true,
|
|
"**/pcre2-*": true,
|
|
"**/cmocka-*": true
|
|
},
|
|
"editor.autoClosingBrackets": "never",
|
|
"editor.dragAndDrop": false,
|
|
"editor.formatOnSave": false,
|
|
"editor.renderWhitespace": "selection",
|
|
"editor.rulers": [120],
|
|
"editor.wordWrapColumn": 120,
|
|
"files.associations": {
|
|
"*.1.in": "troff"
|
|
},
|
|
"files.encoding": "utf8",
|
|
|
|
"todo-tree.highlights.defaultHighlight": {
|
|
"foreground": "red",
|
|
"rulerLane": "full"
|
|
},
|
|
"todo-tree.filtering.excludeGlobs": [
|
|
"**/out/**",
|
|
"**/build/**",
|
|
"**/.vscode/**",
|
|
"**/.github/**",
|
|
"**/_site/**",
|
|
"**/_support/**",
|
|
"**/flex_bison_*/**",
|
|
"**/pcre2-*/**",
|
|
"**/cmocka-*/**"
|
|
],
|
|
"todo-tree.general.statusBar": "total",
|
|
"todo-tree.general.tags": ["TODO", "FIXME", "CHECK"],
|
|
"todo-tree.regex.regex": "(//|#|<!--|\"|/\\*|^\\s*\\*).*?($TAGS)",
|
|
"todo-tree.tree.expanded": true,
|
|
"todo-tree.tree.showCountsInTree": true,
|
|
|
|
"[lex]": {
|
|
"files.encoding": "iso885915"
|
|
},
|
|
"[makefile]": {
|
|
"editor.insertSpaces": false,
|
|
"editor.detectIndentation": false,
|
|
"editor.renderWhitespace": "boundary"
|
|
}
|
|
}
|