From e726b08a6f3314eb53ddd46e7b2df1b9807592a5 Mon Sep 17 00:00:00 2001 From: Razvan Deaconescu Date: Fri, 29 Dec 2023 00:16:39 +0200 Subject: [PATCH] Add top-level .gitignore Ignore common output files. Signed-off-by: Razvan Deaconescu --- .gitignore | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..6c07fa8 --- /dev/null +++ b/.gitignore @@ -0,0 +1,27 @@ +# Outut directory of OpenEdu Builder +/.output/ + +# Archive files +*.zip +*.gz +*.bz2 +*.Z +*.tgz +*.tbz2 +*.rar + +# IDE - VSCode +.vscode/* +!.vscode/settings.json +!.vscode/tasks.json +!.vscode/launch.json +!.vscode/extensions.json + +# Temporary files +*.swp +*.swo +*~ + +# System files +.DS_Store +Thumbs.db