From 49ec45ac55cfea13bc7b392c525893f0b64c7638 Mon Sep 17 00:00:00 2001 From: Ryan Martin <51780559+rmrt1n@users.noreply.github.com> Date: Fri, 5 Apr 2024 23:41:50 +0700 Subject: [PATCH] chore: add .editor/ to .gitignore (#43) closes: WORLD-1042 # Overview add `.editor/` to .gitignore as this isn't required to be tracked in git, similar to `node_modules`. # Testing and Vefifying Manual verification --- .gitignore | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.gitignore b/.gitignore index 3fc51de..6d7da33 100644 --- a/.gitignore +++ b/.gitignore @@ -117,3 +117,6 @@ $RECYCLE.BIN/ # Node /.jsclient/node_modules yarn-error.log + +# cardinal editor dir +.editor