feat(vscode): add more recommended extention

This commit is contained in:
Samuel Dolt 2023-06-02 09:17:38 +02:00
parent 35e4cc615e
commit 29209c6d83
3 changed files with 9 additions and 3 deletions

1
.gitignore vendored
View File

@ -4,3 +4,4 @@ documentation/_build/
documentation/oe-logs
documentation/oe-workdir
__pycache__
.venv/

View File

@ -1,6 +1,10 @@
{
"recommendations": [
"ms-vscode.makefile-tools",
"timonwong.shellcheck"
"timonwong.shellcheck",
"eugenwiens.bitbake",
"kweihmann.oelint-vscode",
"lextudio.restructuredtext",
"trond-snekvik.simple-rst"
]
}

View File

@ -5,5 +5,6 @@
"**/build/sstate-cache/**": true,
"**/build/tmp/**": true
},
"python.formatting.provider": "black"
"python.formatting.provider": "black",
"editor.rulers": [80,100,120]
}