fome-fw/.vscode/settings.json

27 lines
462 B
JSON
Raw Normal View History

{
"editor.detectIndentation": false,
2024-01-23 11:11:36 -08:00
"editor.indentSize": 4,
"editor.tabSize": 4,
"editor.insertSpaces": false,
2023-07-18 11:03:03 -07:00
"[java]": {
"editor.insertSpaces": true
},
"files.exclude": {
"**/.dep": true,
"**/build/lst": true,
"**/build/obj": true,
},
"search.exclude": {
"**/.dep": true,
"**/build/lst": true,
"**/build/obj": true,
"firmware/ChibiOS/demos": true,
},
"cSpell.words": [
"IACV"
],
2023-04-02 14:18:03 -07:00
"files.associations": {
"*.input": "ini"
},
}