From cbc105ad03390702355e9c5d0e3e8871ddf2d26c Mon Sep 17 00:00:00 2001 From: xiaomai Date: Thu, 13 Nov 2025 09:34:30 +0800 Subject: [PATCH] chore: remove ignored files from tracking --- .gitignore | 102 ++++++++++++++++++++++++++++++++++++++++++++++++++++- 1 file changed, 101 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index 600d2d3..5653a23 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,101 @@ -.vscode \ No newline at end of file +# ------------------------------ +# General +# ------------------------------ +# VS Code settings +.vscode/ + +# Node and build artifacts (if any future usage) +node_modules/ +dist/ +build/ +out/ +temp/ +tmp/ + +# System files +.DS_Store +Thumbs.db +desktop.ini + +# Logs +*.log +*.cache +*.tmp + +# ------------------------------ +# Project big / binary files +# ------------------------------ +# Images +*.jpg +*.jpeg +*.png +*.gif +*.bmp +*.tiff +*.ico +*.webp +*.avif +*.heic +*.heif + +# Video +*.mp4 +*.mov +*.avi +*.mkv +*.webm +*.flv +*.wmv +*.mpeg +*.mpg +*.3gp + +# Audio +*.mp3 +*.wav +*.ogg +*.flac +*.m4a +*.aac + +# Fonts +*.ttf +*.otf +*.woff +*.woff2 +*.eot + +# Archives +*.zip +*.rar +*.7z +*.tar +*.gz +*.bz2 + +# Documents / presentations +*.pdf +*.ppt +*.pptx +*.key +*.doc +*.docx +*.xls +*.xlsx + +# ------------------------------ +# Optional: ignore all files larger than 50MB (requires Git LFS or manual pre-commit hook) +# ------------------------------ +# This is not a gitignore feature by itself, but as a reminder: +# git lfs track "*.mp4" "*.png" "*.ttf" +# git add .gitattributes + +# ------------------------------ +# Keep essential small files +# ------------------------------ +!.gitignore +!**/*.html +!**/*.css +!**/*.js +!**/*.md +!**/*.txt