Skip to content

Commit

Permalink
Add CCI .gitignore
Browse files Browse the repository at this point in the history
  • Loading branch information
oteffahi committed Apr 15, 2024
1 parent d5daf2b commit 410bc00
Showing 1 changed file with 141 additions and 0 deletions.
141 changes: 141 additions & 0 deletions conan-recipes/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,141 @@
# Conan specific
**/test_package/build/
**/test_package/build-*/
**/test_package/test_output/
conan.lock
conanbuildinfo.cmake
conanbuildinfo.txt
conaninfo.txt
graph_info.json
build/

# CMake
CMakeUserPresets.json

# IDEs
.idea
.vs
.vscode
.project
.pydevproject
.settings/
.ropeproject/
.devcontainer/
## emacs
*~

# Byte-compiled / optimized / DLL files / Cache
__pycache__/
**/test_package/__pycache__/
*.pyc
*.py[cod]
*$py.class
tmp/
.DS_Store

# 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/
.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

# 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

# mkdocs documentation
/site

# mypy
.mypy_cache/

# scons build files
*.dblite

# vim temp files
.*.sw?
.sw?
Session.vim
*~
.undodir

0 comments on commit 410bc00

Please sign in to comment.