li-nguyen commited on
Commit
4bb7a46
1 Parent(s): 4839403

Create .gitignore

Browse files
Files changed (1) hide show
  1. .gitignore +144 -0
.gitignore ADDED
@@ -0,0 +1,144 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # npm node_modules
2
+ node_modules/
3
+
4
+ # Ipynb
5
+ ipynb_checkpoints
6
+ */.ipynb_checkpoints/*
7
+
8
+ # IPython
9
+ profile_default/
10
+ ipython_config.py
11
+
12
+ # Byte-compiled / optimized / DLL files
13
+ __pycache__/
14
+ *.py[cod]
15
+ *$py.class
16
+
17
+ # C extensions
18
+ *.so
19
+
20
+ # Distribution / packaging
21
+ .Python
22
+ build/
23
+ develop-eggs/
24
+ dist/
25
+ downloads/
26
+ eggs/
27
+ .eggs/
28
+ lib/
29
+ lib64/
30
+ parts/
31
+ sdist/
32
+ var/
33
+ wheels/
34
+ share/python-wheels/
35
+ *.egg-info/
36
+ .installed.cfg
37
+ *.egg
38
+ MANIFEST
39
+
40
+ # macOS
41
+ *.DS_Store
42
+ .DS_Store
43
+ .AppleDouble
44
+ .LSOverride
45
+ .Trashes
46
+
47
+ # PyInstaller
48
+ *.manifest
49
+ *.spec
50
+
51
+ # Installer logs
52
+ pip-log.txt
53
+ pip-delete-this-directory.txt
54
+
55
+ # Unit test / coverage reports
56
+ htmlcov/
57
+ .tox/
58
+ .nox/
59
+ .coverage
60
+ .coverage.*
61
+ .cache
62
+ nosetests.xml
63
+ coverage.xml
64
+ *.cover
65
+ *.py,cover
66
+ .hypothesis/
67
+ .pytest_cache/
68
+ cover/
69
+
70
+ # Translations
71
+ *.mo
72
+ *.pot
73
+
74
+ # Django
75
+ *.log
76
+ local_settings.py
77
+ db.sqlite3
78
+ db.sqlite3-journal
79
+
80
+ # Flask
81
+ instance/
82
+ .webassets-cache
83
+
84
+ # Scrapy
85
+ .scrapy
86
+
87
+ # PyBuilder
88
+ .pybuilder/
89
+ target/
90
+
91
+ # IntelliJ
92
+ .idea/
93
+ *.iml
94
+ out/
95
+ .idea_modules/
96
+
97
+ # Vscode
98
+ .vscode/
99
+
100
+ # PEP 582
101
+ __pypackages__/
102
+
103
+ # Celery
104
+ celerybeat-schedule
105
+ celerybeat.pid
106
+
107
+ # SageMath
108
+ *.sage.py
109
+
110
+ # Environments
111
+ .env
112
+ .venv
113
+ env/
114
+ venv/
115
+ ENV/
116
+ env.bak/
117
+ venv.bak/
118
+
119
+ # Spyder
120
+ .spyderproject
121
+ .spyproject
122
+
123
+ # Rope
124
+ .ropeproject
125
+
126
+ # Mkdocs
127
+ /site
128
+
129
+ # Mypy
130
+ .mypy_cache/
131
+ .dmypy.json
132
+ dmypy.json
133
+
134
+ # Pyre
135
+ .pyre/
136
+
137
+ # Pytype
138
+ .pytype/
139
+
140
+ # Cython
141
+ cython_debug/
142
+
143
+ # Ruff
144
+ .ruff_cache/