1+ .git
2+
3+ # Local copies of other repos
4+ docs /source /_code /rosetta- *
5+
6+ # Compiled source
7+ * .com
8+ * .class
9+ * .dll
10+ * .exe
11+ * .o
12+ * .so
13+
14+ # Packages
15+ * .7z
16+ * .dmg
17+ * .gz
18+ * .iso
19+ * .jar
20+ * .rar
21+ * .tar
22+ * .zip
23+
24+ # Logs and databases
25+ * .log
26+ * .sql
27+ * .sqlite
28+
29+ # OS generated files
30+ .DS_Store
31+ .DS_Store ?
32+ ._ *
33+ .Spotlight-V100
34+ .Trashes
35+ ehthumbs.db
36+ Thumbs.db
37+
38+ # IPython: Jupyter
39+ .ipynb_checkpoints
40+ * /.ipynb_checkpoints /*
41+
42+ # IPython
43+ profile_default /
44+ ipython_config.py
45+
46+ # IPython: Remove previous ipynb_checkpoints
47+ # git rm -r .ipynb_checkpoints/
48+
49+ # Python: Byte-compiled / optimized / DLL files
50+ __pycache__ /
51+ * .py [cod ]
52+ * $py.class
53+
54+ # Python: C extensions
55+ * .so
56+
57+ # Python: Distribution / packaging
58+ .Python
59+ build /
60+ develop-eggs /
61+ dist /
62+ downloads /
63+ eggs /
64+ .eggs /
65+ lib /
66+ lib64 /
67+ parts /
68+ sdist /
69+ var /
70+ wheels /
71+ share /python-wheels /
72+ * .egg-info /
73+ .installed.cfg
74+ * .egg
75+ MANIFEST
76+
77+ # Python: PyInstaller and installer logs
78+ * .manifest
79+ * .spec
80+ pip-log.txt
81+ pip-delete-this-directory.txt
82+
83+ # Python: unit tests and coverage reports
84+ htmlcov /
85+ .tox /
86+ .nox /
87+ .coverage
88+ .coverage. *
89+ .cache
90+ nosetests.xml
91+ coverage.xml
92+ * .cover
93+ * .py,cover
94+ .hypothesis /
95+ .pytest_cache /
96+ cover /
97+
98+ # Python: translations
99+ * .mo
100+ * .pot
101+
102+ # Python: Sphinx documentation
103+ docs /_build /
104+
105+ # Python: PyBuilder
106+ .pybuilder /
107+ target /
108+
109+ # Python: pyenv
110+ # .python-version
111+
112+ # Python: pipenv
113+ # According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
114+ # However, in case of collaboration, if having platform-specific dependencies or dependencies
115+ # having no cross-platform support, pipenv may install dependencies that don't work, or not
116+ # install all needed dependencies.
117+ # Pipfile.lock
118+
119+ # Python: PEP 582 - used by e.g. github.com/David-OConnor/pyflow
120+ __pypackages__ /
121+
122+ # Python: Celery
123+ celerybeat-schedule
124+ celerybeat.pid
125+
126+ # Python: SageMath parsed files
127+ * .sage.py
128+
129+ # Python: environments
130+ .env
131+ .venv
132+ env /
133+ venv /
134+ ENV /
135+ env.bak /
136+ venv.bak /
137+
138+ # Python: Spyder project settings
139+ .spyderproject
140+ .spyproject
141+
142+ # Python: Rope project settings
143+ .ropeproject
144+
145+ # mkdocs documentation
146+ /site
147+
148+ # Python: mypy
149+ .mypy_cache /
150+ .dmypy.json
151+ dmypy.json
152+
153+ # Python: Pyre type checker
154+ .pyre /
155+
156+ # Python: pytype static type analyzer
157+ .pytype /
158+
159+ # Python: Cython debug symbols
160+ cython_debug /
161+
162+ # Node.js: Logs
163+ logs
164+ * .log
165+ npm-debug.log *
166+ yarn-debug.log *
167+ yarn-error.log *
168+ lerna-debug.log *
169+ .pnpm-debug.log *
170+
171+ # Node.js: Diagnostic reports (https://nodejs.org/api/report.html)
172+ report. [0-9 ]* . [0-9 ]* . [0-9 ]* . [0-9 ]* .json
173+
174+ # Node.js: Runtime data
175+ pids
176+ * .pid
177+ * .seed
178+ * .pid.lock
179+
180+ # Node.js: Compiled binary addons (https://nodejs.org/api/addons.html)
181+ build /Release
182+
183+ # Node.js: Dependency directories
184+ node_modules /
185+ jspm_packages /
186+
187+ # Node.js: Optional npm cache directory
188+ .npm
189+
190+ # Node.js: Optional eslint cache
191+ .eslintcache
192+
193+ # Node.js: Optional REPL history
194+ .node_repl_history
195+
196+ # Node.js: Output of 'npm pack'
197+ * .tgz
198+
199+ # Node.js: dotenv environment variable files
200+ .env
201+ .env.development.local
202+ .env.test.local
203+ .env.production.local
204+ .env.local
0 commit comments