diff --git a/.gitignore b/.gitignore index 5b450d4..b4370a8 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,5 @@ +# This file will have significant overlap with .vscodeignore /bin/* +/extension/ +node_modules/ +*.code-workspace diff --git a/.vscodeignore b/.vscodeignore index f369b5e..89a292d 100644 --- a/.vscodeignore +++ b/.vscodeignore @@ -1,4 +1,7 @@ -.vscode/** -.vscode-test/** -.gitignore -vsc-extension-quickstart.md +# This section of the file will have significant overlap with .gitignore +# with the major difference that .vscodeignore cannot anchor to the root +# of the repo. Hence 'bin/' ignores _all_ directories named 'bin'. +bin/* +extension/ +node_modules/ +*.code-workspace