From 29209c6d83f81fc3c06a3adb3dbd1c5225f8bdf7 Mon Sep 17 00:00:00 2001 From: Samuel Dolt Date: Fri, 2 Jun 2023 09:17:38 +0200 Subject: [PATCH] feat(vscode): add more recommended extention --- .gitignore | 3 ++- .vscode/extensions.json | 6 +++++- .vscode/settings.json | 3 ++- 3 files changed, 9 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index 001d99a..da7e323 100644 --- a/.gitignore +++ b/.gitignore @@ -3,4 +3,5 @@ vscode-bitbake-build/ documentation/_build/ documentation/oe-logs documentation/oe-workdir -__pycache__ \ No newline at end of file +__pycache__ +.venv/ diff --git a/.vscode/extensions.json b/.vscode/extensions.json index c39b0c8..ac5a5fb 100644 --- a/.vscode/extensions.json +++ b/.vscode/extensions.json @@ -1,6 +1,10 @@ { "recommendations": [ "ms-vscode.makefile-tools", - "timonwong.shellcheck" + "timonwong.shellcheck", + "eugenwiens.bitbake", + "kweihmann.oelint-vscode", + "lextudio.restructuredtext", + "trond-snekvik.simple-rst" ] } \ No newline at end of file diff --git a/.vscode/settings.json b/.vscode/settings.json index b6d0c36..1d3ef0c 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -5,5 +5,6 @@ "**/build/sstate-cache/**": true, "**/build/tmp/**": true }, - "python.formatting.provider": "black" + "python.formatting.provider": "black", + "editor.rulers": [80,100,120] } \ No newline at end of file