diff options
| author | Fuwn <[email protected]> | 2025-12-09 23:16:23 -0800 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2025-12-09 23:16:23 -0800 |
| commit | 3ffcdb247df3f56c4c21c6fed83ee1af5fb94224 (patch) | |
| tree | 409fe42bb385ca73bd1b152623465ee098434179 /.gitignore | |
| download | mathematicalstatisticsproject-main.tar.xz mathematicalstatisticsproject-main.zip | |
Diffstat (limited to '.gitignore')
| -rw-r--r-- | .gitignore | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..27755d4 --- /dev/null +++ b/.gitignore @@ -0,0 +1,33 @@ +# Python +__pycache__/ +*.py[cod] +*$py.class +*.so +.Python +env/ +venv/ +ENV/ +.venv + +# Project specific +results/ +figures/ +*.csv +*.json +.env + +# IDE +.vscode/ +.idea/ +*.swp +*.swo + +# OS +.DS_Store +Thumbs.db + +# Temporary +tmp/ +temp/ +*.tmp + |