LedFx/.gitignore

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

74 lines
938 B
Plaintext
Raw Permalink Normal View History

2018-06-02 20:20:41 +02:00
# Temporary and binary files
*~
*.py[cod]
*.so
*.cfg
!setup.cfg
*.orig
*.log
*.pot
.cache/*
.*.swp
*/.ipynb_checkpoints/*
2020-04-02 18:05:45 +02:00
*.DS_Store
2018-06-02 20:20:41 +02:00
2020-01-12 23:19:28 +01:00
# Python env
env
2022-12-18 17:25:50 +01:00
.venv
2020-01-12 23:19:28 +01:00
2018-07-24 07:15:57 +02:00
# NPM
node_modules/
npm-debug.log
package-lock.json
2018-06-02 20:20:41 +02:00
# Project files
.ropeproject
.project
.pydevproject
.settings
.idea
2020-12-04 23:29:19 +01:00
.vscode/settings.json
2020-04-02 18:05:45 +02:00
*.code-workspace
2018-06-02 20:20:41 +02:00
# Package files
*.egg
*.eggs/
.installed.cfg
*.egg-info
# Unittest and coverage
htmlcov/*
.coverage
.tox
junit.xml
coverage.xml
# Build and docs folder/files
build/*
dist/*
sdist/*
docs/api/*
docs/_build/*
cover/*
MANIFEST
2020-11-27 00:13:13 +01:00
2020-11-08 08:20:10 +01:00
# LedFx helper functions leave these files behind
performance_analysis.csv
performance_insights.txt
2020-12-23 12:48:07 +01:00
# Debugging task may leave this folder behind if it crashes
debug_config
# spec file build may leave the ledfx.env behind
ledfx.env
2020-12-23 12:48:07 +01:00
# Misc
.devcontainer/ledfx-config.yml
2021-03-06 17:05:15 +01:00
frontend/*.eslintcache
*.eslintcache
#Pycache from numba
ledfx/effects/__pycache__/*
ledfx/__pycache__/*
__pycache__/*