Skip to content

Commit 2037769

Browse files
add support to vscode
1 parent 00d959f commit 2037769

File tree

3 files changed

+21
-0
lines changed

3 files changed

+21
-0
lines changed

.gitignore

+6
Original file line numberDiff line numberDiff line change
@@ -1 +1,7 @@
1+
.pio
2+
.vscode/.browse.c_cpp.db*
3+
.vscode/c_cpp_properties.json
4+
.vscode/launch.json
5+
.vscode/ipch
6+
17
.development

.vscode/extensions.json

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
{
2+
// See http://go.microsoft.com/fwlink/?LinkId=827846
3+
// for the documentation about the extensions.json format
4+
"recommendations": [
5+
"platformio.platformio-ide",
6+
"DavidAnson.vscode-markdownlint"
7+
]
8+
}

.vscode/settings.json

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
{
2+
"editor.formatOnSave": true,
3+
"editor.detectIndentation": false,
4+
"editor.codeActionsOnSave": {
5+
"source.fixAll.markdownlint": true
6+
}
7+
}

0 commit comments

Comments
 (0)