henry000 commited on
Commit
b159f48
Β·
1 Parent(s): 30d2275

πŸ™ˆ [Add] .gitignore file to ignore files, folders, symbolic link

Browse files
Files changed (1) hide show
  1. .gitignore +142 -0
.gitignore ADDED
@@ -0,0 +1,142 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Byte-compiled / optimized / DLL files
2
+ __pycache__/
3
+ *.py[cod]
4
+ *$py.class
5
+
6
+ # C extensions
7
+ *.so
8
+
9
+ # Distribution / packaging
10
+ .Python
11
+ build/
12
+ develop-eggs/
13
+ dist/
14
+ downloads/
15
+ eggs/
16
+ .eggs/
17
+ lib/
18
+ lib64/
19
+ parts/
20
+ sdist/
21
+ var/
22
+ wheels/
23
+ pip-wheel-metadata/
24
+ share/python-wheels/
25
+ *.egg-info/
26
+ .installed.cfg
27
+ *.egg
28
+ MANIFEST
29
+
30
+ # PyInstaller
31
+ *.manifest
32
+ *.spec
33
+
34
+ # Installer logs
35
+ pip-log.txt
36
+ pip-delete-this-directory.txt
37
+
38
+ # Unit test / coverage reports
39
+ htmlcov/
40
+ .tox/
41
+ .nox/
42
+ .coverage
43
+ .coverage.*
44
+ .cache
45
+ nosetests.xml
46
+ coverage.xml
47
+ *.cover
48
+ .hypothesis/
49
+ .pytest_cache/
50
+
51
+ # Translations
52
+ *.mo
53
+ *.pot
54
+
55
+ # Django stuff:
56
+ *.log
57
+ local_settings.py
58
+ db.sqlite3
59
+ db.sqlite3-journal
60
+
61
+ # Flask stuff:
62
+ instance/
63
+ .webassets-cache
64
+
65
+ # Scrapy stuff:
66
+ .scrapy
67
+
68
+ # Sphinx documentation
69
+ docs/_build/
70
+
71
+ # PyBuilder
72
+ target/
73
+
74
+ # Jupyter Notebook
75
+ .ipynb_checkpoints
76
+
77
+ # PyCharm
78
+ .idea/
79
+ # VSCode
80
+ .vscode/
81
+
82
+ # Environment variables
83
+ .env
84
+ .venv
85
+ env/
86
+ venv/
87
+ ENV/
88
+ env.bak/
89
+ venv.bak/
90
+
91
+ # Spyder project settings
92
+ .spyderproject
93
+ .spyproject
94
+
95
+ # Rope project settings
96
+ .ropeproject
97
+
98
+ # mkdocs documentation
99
+ /site
100
+
101
+ # mypy
102
+ .mypy_cache/
103
+ .dmypy.json
104
+ dmypy.json
105
+
106
+ # Pyre type checker
107
+ .pyre/
108
+
109
+ # profiling data
110
+ .prof
111
+
112
+ # Machine learning specific folders and symlinks
113
+ runs
114
+ data
115
+ datasets
116
+
117
+ # Datasets and model checkpoints
118
+ *.pth
119
+ *.pt
120
+
121
+ # Image files
122
+ *.png
123
+ *.jpg
124
+ *.jpeg
125
+ *.gif
126
+ *.bmp
127
+ *.tiff
128
+ *.ico
129
+
130
+ # Video files
131
+ *.mp4
132
+ *.avi
133
+ *.mov
134
+ *.mkv
135
+ *.flv
136
+ *.wmv
137
+
138
+ # Ignore Mac system files
139
+ .DS_Store
140
+
141
+ # Ignore npm packages (if using frontend components)
142
+ node_modules/