refactor: Add format on save for VS Code

Added settings to format various file types on save in VS Code.

Added some recommended VS Code extensions:

- Prettier for formatting various file types
- Python for formatting Python files
- C/C++ for formatting C files
- Devicetree for syntax highlighting
- CMake for syntax highlighting
This commit is contained in:
Joel Spadin
2023-04-22 23:47:42 -05:00
committed by Pete Johanson
parent 48be2eedd0
commit d53cd19929
2 changed files with 26 additions and 1 deletions

9
.vscode/extensions.json vendored Normal file
View File

@@ -0,0 +1,9 @@
{
"recommendations": [
"esbenp.prettier-vscode",
"ms-python.python",
"ms-vscode.cpptools",
"plorefice.devicetree",
"twxs.cmake"
]
}