aboutsummaryrefslogtreecommitdiff
path: root/tools/cppmerge/.gitignore
diff options
context:
space:
mode:
authorcrupest <crupest@outlook.com>2018-11-13 01:01:27 +0800
committercrupest <crupest@outlook.com>2018-11-13 01:01:27 +0800
commite158fcb47ea6a7bd9172d0751e38265b61d6c88c (patch)
tree1e142ae77ad824eeb87b634554d3f7159de442c9 /tools/cppmerge/.gitignore
parent828a48aa387796ce89706ade69d0a6a3bf1e35a9 (diff)
downloadcru-e158fcb47ea6a7bd9172d0751e38265b61d6c88c.tar.gz
cru-e158fcb47ea6a7bd9172d0751e38265b61d6c88c.tar.bz2
cru-e158fcb47ea6a7bd9172d0751e38265b61d6c88c.zip
Dev code gen.
Diffstat (limited to 'tools/cppmerge/.gitignore')
-rw-r--r--tools/cppmerge/.gitignore147
1 files changed, 147 insertions, 0 deletions
diff --git a/tools/cppmerge/.gitignore b/tools/cppmerge/.gitignore
new file mode 100644
index 00000000..0b6b38d0
--- /dev/null
+++ b/tools/cppmerge/.gitignore
@@ -0,0 +1,147 @@
+
+# Created by https://www.gitignore.io/api/python,visualstudiocode
+# Edit at https://www.gitignore.io/?templates=python,visualstudiocode
+
+### Python ###
+# Byte-compiled / optimized / DLL files
+__pycache__/
+*.py[cod]
+*$py.class
+
+# C extensions
+*.so
+
+# Distribution / packaging
+.Python
+build/
+develop-eggs/
+dist/
+downloads/
+eggs/
+.eggs/
+lib/
+lib64/
+parts/
+sdist/
+var/
+wheels/
+*.egg-info/
+.installed.cfg
+*.egg
+MANIFEST
+
+# PyInstaller
+# Usually these files are written by a python script from a template
+# before PyInstaller builds the exe, so as to inject date/other infos into it.
+*.manifest
+*.spec
+
+# Installer logs
+pip-log.txt
+pip-delete-this-directory.txt
+
+# Unit test / coverage reports
+htmlcov/
+.tox/
+.nox/
+.coverage
+.coverage.*
+.cache
+nosetests.xml
+coverage.xml
+*.cover
+.hypothesis/
+.pytest_cache/
+
+# Translations
+*.mo
+*.pot
+
+# Django stuff:
+*.log
+local_settings.py
+db.sqlite3
+
+# Flask stuff:
+instance/
+.webassets-cache
+
+# Scrapy stuff:
+.scrapy
+
+# Sphinx documentation
+docs/_build/
+
+# PyBuilder
+target/
+
+# Jupyter Notebook
+.ipynb_checkpoints
+
+# IPython
+profile_default/
+ipython_config.py
+
+# pyenv
+.python-version
+
+# celery beat schedule file
+celerybeat-schedule
+
+# SageMath parsed files
+*.sage.py
+
+# Environments
+.env
+.venv
+env/
+venv/
+ENV/
+env.bak/
+venv.bak/
+
+# Spyder project settings
+.spyderproject
+.spyproject
+
+# Rope project settings
+.ropeproject
+
+# mkdocs documentation
+/site
+
+# mypy
+.mypy_cache/
+.dmypy.json
+dmypy.json
+
+# Pyre type checker
+.pyre/
+
+### Python Patch ###
+.venv/
+
+### Python.VirtualEnv Stack ###
+# Virtualenv
+# http://iamzed.com/2009/05/07/a-primer-on-virtualenv/
+[Bb]in
+[Ii]nclude
+[Ll]ib
+[Ll]ib64
+[Ll]ocal
+[Ss]cripts
+pyvenv.cfg
+pip-selfcheck.json
+
+### VisualStudioCode ###
+.vscode/*
+!.vscode/settings.json
+!.vscode/tasks.json
+!.vscode/launch.json
+!.vscode/extensions.json
+
+### VisualStudioCode Patch ###
+# Ignore all local history of files
+.history
+
+# End of https://www.gitignore.io/api/python,visualstudiocode