Skip to content

Commit c4a6cea

Browse files
committed
Add gitignore
1 parent ddff46c commit c4a6cea

File tree

1 file changed

+242
-0
lines changed

1 file changed

+242
-0
lines changed

.gitignore

Lines changed: 242 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,242 @@
1+
# --- DOCS ---
2+
3+
docs/site
4+
5+
# --- JAVASCRIPT BUNDLES ---
6+
7+
src/reactpy_router/static/bundle.js
8+
9+
# --- PYTHON IGNORE FILES ----
10+
11+
# Byte-compiled / optimized / DLL files
12+
__pycache__/
13+
*.py[cod]
14+
*$py.class
15+
16+
# C extensions
17+
*.so
18+
19+
# Distribution / packaging
20+
.Python
21+
build/
22+
develop-eggs/
23+
dist/
24+
downloads/
25+
eggs/
26+
.eggs/
27+
lib/
28+
lib64/
29+
parts/
30+
sdist/
31+
var/
32+
wheels/
33+
share/python-wheels/
34+
*.egg-info/
35+
.installed.cfg
36+
*.egg
37+
MANIFEST
38+
39+
# PyInstaller
40+
# Usually these files are written by a python script from a template
41+
# before PyInstaller builds the exe, so as to inject date/other infos into it.
42+
*.manifest
43+
*.spec
44+
45+
# Installer logs
46+
pip-log.txt
47+
pip-delete-this-directory.txt
48+
49+
# Unit test / coverage reports
50+
htmlcov/
51+
.tox/
52+
.nox/
53+
.coverage
54+
.coverage.*
55+
.cache
56+
nosetests.xml
57+
coverage.xml
58+
*.cover
59+
*.py,cover
60+
.hypothesis/
61+
.pytest_cache/
62+
cover/
63+
64+
# Translations
65+
*.mo
66+
*.pot
67+
68+
69+
# PyBuilder
70+
.pybuilder/
71+
target/
72+
73+
# Jupyter Notebook
74+
.ipynb_checkpoints
75+
76+
# IPython
77+
profile_default/
78+
ipython_config.py
79+
80+
# pyenv
81+
# For a library or package, you might want to ignore these files since the code is
82+
# intended to run in multiple environments; otherwise, check them in:
83+
# .python-version
84+
85+
# pipenv
86+
# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
87+
# However, in case of collaboration, if having platform-specific dependencies or dependencies
88+
# having no cross-platform support, pipenv may install dependencies that don't work, or not
89+
# install all needed dependencies.
90+
#Pipfile.lock
91+
92+
# poetry
93+
# Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control.
94+
# This is especially recommended for binary packages to ensure reproducibility, and is more
95+
# commonly ignored for libraries.
96+
# https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control
97+
#poetry.lock
98+
99+
# PEP 582; used by e.g. github.com/David-OConnor/pyflow
100+
__pypackages__/
101+
102+
# Celery stuff
103+
celerybeat-schedule
104+
celerybeat.pid
105+
106+
# SageMath parsed files
107+
*.sage.py
108+
109+
# Environments
110+
.env
111+
.venv*
112+
env/
113+
venv/
114+
ENV/
115+
env.bak/
116+
venv.bak/
117+
118+
# Spyder project settings
119+
.spyderproject
120+
.spyproject
121+
122+
# Rope project settings
123+
.ropeproject
124+
125+
# mkdocs documentation
126+
/site
127+
128+
# mypy
129+
.mypy_cache/
130+
.dmypy.json
131+
dmypy.json
132+
133+
# Pyre type checker
134+
.pyre/
135+
136+
# pytype static type analyzer
137+
.pytype/
138+
139+
# Cython debug symbols
140+
cython_debug/
141+
142+
# PyCharm
143+
# JetBrains specific template is maintainted in a separate JetBrains.gitignore that can
144+
# be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
145+
# and can be added to the global gitignore or merged into this file. For a more nuclear
146+
# option (not recommended) you can uncomment the following to ignore the entire idea folder.
147+
#.idea/
148+
149+
150+
# --- JAVASCRIPT IGNORE FILES ---
151+
152+
# See http://help.github.com/ignore-files/ for more about ignoring files.
153+
154+
# compiled output
155+
/dist
156+
/tmp
157+
/out-tsc
158+
159+
# Runtime data
160+
pids
161+
*.pid
162+
*.seed
163+
*.pid.lock
164+
165+
# Directory for instrumented libs generated by jscoverage/JSCover
166+
lib-cov
167+
168+
# Coverage directory used by tools like istanbul
169+
coverage
170+
171+
# nyc test coverage
172+
.nyc_output
173+
174+
# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
175+
.grunt
176+
177+
# Bower dependency directory (https://bower.io/)
178+
bower_components
179+
180+
# node-waf configuration
181+
.lock-wscript
182+
183+
# IDEs and editors
184+
.idea
185+
.project
186+
.classpath
187+
.c9/
188+
*.launch
189+
.settings/
190+
*.sublime-workspace
191+
192+
# IDE - VSCode
193+
.vscode/*
194+
!.vscode/settings.json
195+
!.vscode/tasks.json
196+
!.vscode/launch.json
197+
!.vscode/extensions.json
198+
199+
# misc
200+
.sass-cache
201+
connect.lock
202+
typings
203+
204+
# Logs
205+
logs
206+
*.log
207+
npm-debug.log*
208+
yarn-debug.log*
209+
yarn-error.log*
210+
211+
212+
# Dependency directories
213+
node_modules/
214+
jspm_packages/
215+
216+
# Optional npm cache directory
217+
.npm
218+
219+
# Optional eslint cache
220+
.eslintcache
221+
222+
# Optional REPL history
223+
.node_repl_history
224+
225+
# Output of 'npm pack'
226+
*.tgz
227+
228+
# Yarn Integrity file
229+
.yarn-integrity
230+
231+
# dotenv environment variables file
232+
.env
233+
234+
# next.js build output
235+
.next
236+
237+
# Lerna
238+
lerna-debug.log
239+
240+
# System Files
241+
.DS_Store
242+
Thumbs.db

0 commit comments

Comments
 (0)