Add formatter

This commit is contained in:
Oleksii Mandrychenko
2024-08-08 22:15:37 -07:00
parent a63fe370d8
commit eb4b9e0075
8 changed files with 216 additions and 216 deletions
+14 -11
View File
@@ -1,12 +1,15 @@
{
"files.associations": {
"images.h": "c",
"*.tcc": "cpp",
"deque": "cpp",
"string": "cpp",
"unordered_map": "cpp",
"unordered_set": "cpp",
"vector": "cpp",
"system_error": "cpp"
}
}
// Suggest where to make a new line by adding two vertical lines
// Vertical lines, 79 works well for code reviews and diffs
"editor.rulers": [
79,
90
],
"editor.formatOnSave": true,
"editor.minimap.enabled": false,
"workbench.colorCustomizations": {
"editorRuler.foreground": "#ff4081"
},
"files.insertFinalNewline": true,
"files.autoSave": "onFocusChange",
}