Files
Bachelorarbeit-Rover/.vscode/settings.json
T
2022-12-13 16:26:28 +01:00

108 lines
2.6 KiB
JSON

{
"files.insertFinalNewline": true,
"cSpell.ignoreWords": [
"ledc",
"write"
],
"todohighlight.isEnable": true,
"todohighlight.isCaseSensitive": true,
"todohighlight.keywords": [
"DEBUG:",
"REVIEW:",
{
"text": "NOTE:",
"color": "#ff0000",
"backgroundColor": "yellow",
"overviewRulerColor": "grey"
},
{
"text": "HACK:",
"color": "#000",
"isWholeLine": false,
},
{
"text": "TODO:",
"color": "red",
"border": "1px solid red",
"borderRadius": "2px", //NOTE: using borderRadius along with `border` or you will see nothing change
"backgroundColor": "rgba(0,0,0,.2)",
//other styling properties goes here ...
}
],
"todohighlight.keywordsPattern": "TODO:|FIXME:|\\(([^)]+)\\)", //highlight `TODO:`,`FIXME:` or content between parentheses
"todohighlight.defaultStyle": {
"color": "red",
"backgroundColor": "#ffab00",
"overviewRulerColor": "#ffab00",
"cursor": "pointer",
"border": "1px solid #eee",
"borderRadius": "2px",
"isWholeLine": true,
//other styling properties goes here ...
},
"todohighlight.include": [
"**/*.h",
"**/*.cpp",
"**/*.c",
"**/*.txt"
],
"todohighlight.exclude": [
"**/node_modules/**",
"**/bower_components/**",
"**/dist/**",
"**/build/**",
"**/.vscode/**",
"**/.github/**",
"**/_output/**",
"**/*.min.*",
"**/*.map",
"**/.next/**"
],
"todohighlight.maxFilesForSearch": 5120,
"todohighlight.toggleURI": false,
"doxdocgen.generic.authorEmail": "alex@kleiax.de",
"doxdocgen.generic.authorName": "Alexander Klein",
"files.associations": {
"new": "cpp",
"array": "cpp",
"*.tcc": "cpp",
"deque": "cpp",
"list": "cpp",
"string": "cpp",
"vector": "cpp",
"fstream": "cpp",
"istream": "cpp",
"streambuf": "cpp",
"functional": "cpp",
"cmath": "cpp"
},
"cSpell.words": [
"Ahnung",
"akku",
"blox",
"bluedroid",
"gast",
"GNSS",
"GPGGA",
"Huus",
"Keine",
"kleiax",
"Lebennig",
"NMEA",
"NMEAGPGGA",
"NTRIP",
"pidl",
"pidr",
"Punica",
"RHEDE",
"Rtcm",
"Schalke",
"TPMOBIL",
"UBLOX",
"ZLPJ"
]
}