syncfiles/.vscode/settings.json
Dietrich Epp 3f6acc9f42 Use more modern C
While C99 is not supported by old Mac OS compilers, line comments are
supported. Keeping strictly to old C90 style code is annoying without
benefit.
2022-04-21 13:57:17 -04:00

20 lines
350 B
JSON

{
"editor.rulers": [80],
"editor.detectIndentation": false,
"editor.tabSize": 4,
"editor.insertSpaces": false,
"files.associations": {
"*.h": "c"
},
"[starlark]": {
"editor.insertSpaces": true
},
"[json]": {
"editor.insertSpaces": true,
"editor.tabSize": 2
},
"[python]": {
"editor.insertSpaces": true
}
}