diff options
author | Alexander Neben <alexander.neben@mongodb.com> | 2023-01-12 00:52:14 +0000 |
---|---|---|
committer | Evergreen Agent <no-reply@evergreen.mongodb.com> | 2023-01-12 01:50:23 +0000 |
commit | 5e9efe141520d36adcdd8af424c210d30e955943 (patch) | |
tree | 61e2b03589800c8bdd3c8a540c3c9df180183720 /.gitignore | |
parent | 3a83033271f78343a3a48e3f9daafd8d655f7bdb (diff) | |
download | mongo-5e9efe141520d36adcdd8af424c210d30e955943.tar.gz |
SERVER-68594 Added sensible vscode linting/autocomplete configuration
Diffstat (limited to '.gitignore')
-rw-r--r-- | .gitignore | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/.gitignore b/.gitignore index bafd2b62441..e021d1059b9 100644 --- a/.gitignore +++ b/.gitignore @@ -60,7 +60,6 @@ venv /src/third_party/*/*.lastbuildstate /buildscripts/libdeps/graph_visualizer_web_stack/build /buildscripts/libdeps/graph_visualizer_web_stack/node_modules -package-lock.json libdeps.graphml build-metrics.json config.log @@ -168,8 +167,11 @@ CMakeLists.txt # XCode projects .xcworkspace -# Visual Studio and VSCode projects -.vscode/ +# VSCode projects +.vscode/** +!.vscode/linux-virtual-workstation.code-workspace + +# Visual Studio projects .vs/ /x64/ @@ -253,3 +255,7 @@ report.json # suggested resmoke binary location dist-test/ + +# node extra stuff (for someone installing eslint) +node_modules/ +package-lock.json |