From d4c9247b87c0a2701683ed1a17383cfb451cf609 Mon Sep 17 00:00:00 2001 From: Joe Pea Date: Wed, 15 Jul 2020 23:00:28 -0700 Subject: [PATCH] fix: gitignore was ignoring folders in src, so VS Code search results or file fuzzy finder were not working, etc --- .gitignore | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.gitignore b/.gitignore index e9803a96f..dc015fd2a 100644 --- a/.gitignore +++ b/.gitignore @@ -2,10 +2,10 @@ .DS_Store .idea node_modules -themes/ -lib/ -cypress/integration/examples -cypress/fixtures/docs +/themes/ +/lib/ +/cypress/integration/examples +/cypress/fixtures/docs # exceptions -!.gitkeep \ No newline at end of file +!.gitkeep