From c2dceb0be4498a5008181bfbf3815664b1dad6f9 Mon Sep 17 00:00:00 2001 From: Andras Schmelczer Date: Sun, 8 Dec 2024 11:01:48 +0000 Subject: [PATCH] Update gitignore --- .gitignore | 10 ++++++++++ plugin/.gitignore | 22 ---------------------- 2 files changed, 10 insertions(+), 22 deletions(-) create mode 100644 .gitignore delete mode 100644 plugin/.gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 00000000..e1fd68e9 --- /dev/null +++ b/.gitignore @@ -0,0 +1,10 @@ +# vscode +.vscode + +# npm +node_modules + +# Exclude macOS Finder (System Explorer) View States +.DS_Store + +backend/target diff --git a/plugin/.gitignore b/plugin/.gitignore deleted file mode 100644 index e09a007e..00000000 --- a/plugin/.gitignore +++ /dev/null @@ -1,22 +0,0 @@ -# vscode -.vscode - -# Intellij -*.iml -.idea - -# npm -node_modules - -# Don't include the compiled main.js file in the repo. -# They should be uploaded to GitHub releases instead. -main.js - -# Exclude sourcemaps -*.map - -# obsidian -data.json - -# Exclude macOS Finder (System Explorer) View States -.DS_Store