From b6228c0626668e52cb197e050e2b0d13285315af Mon Sep 17 00:00:00 2001 From: Pierrick Rambaud Date: Wed, 22 Feb 2023 22:08:54 +0100 Subject: [PATCH] fix: remove the vscode folder --- .gitignore | 3 ++- .vscode/extensions.json | 8 -------- .vscode/settings.json | 5 ----- 3 files changed, 2 insertions(+), 14 deletions(-) delete mode 100644 .vscode/extensions.json delete mode 100644 .vscode/settings.json diff --git a/.gitignore b/.gitignore index 042c8f7..07503ea 100644 --- a/.gitignore +++ b/.gitignore @@ -135,4 +135,5 @@ dmypy.json # pytype static type analyzer .pytype/ -# End of https://www.toptal.com/developers/gitignore/api/python +# IDE related configuration +.vscode diff --git a/.vscode/extensions.json b/.vscode/extensions.json deleted file mode 100644 index ca52345..0000000 --- a/.vscode/extensions.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "recommendations": [ - "esbenp.prettier-vscode", - "ms-python.python", - "njpwerner.autodocstring", - "redhat.vscode-yaml" - ] -} diff --git a/.vscode/settings.json b/.vscode/settings.json deleted file mode 100644 index 31b59ff..0000000 --- a/.vscode/settings.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "autoDocstring.docstringFormat": "sphinx", - "python.formatting.provider": "black", - "python.linting.enabled": true -}