okozachenko | 093ce9e | 2021-04-01 22:47:39 +0300 | [diff] [blame] | 1 | # Add patterns in here to exclude files created by tools integrated with this |
| 2 | # repository, such as test frameworks from the project's recommended workflow, |
| 3 | # rendered documentation and package builds. |
| 4 | # |
| 5 | # Don't add patterns to exclude files created by preferred personal tools |
| 6 | # (editors, IDEs, your operating system itself even). These should instead be |
| 7 | # maintained outside the repository, for example in a ~/.gitignore file added |
| 8 | # with: |
| 9 | # |
| 10 | # git config --global core.excludesfile '~/.gitignore' |
| 11 | |
| 12 | # Bytecompiled Python |
| 13 | *.py[cod] |
| 14 | |
| 15 | # C extensions |
| 16 | *.so |
| 17 | |
| 18 | # Packages |
| 19 | *.egg* |
| 20 | *.egg-info |
| 21 | dist |
| 22 | build |
| 23 | eggs |
| 24 | parts |
| 25 | bin |
| 26 | var |
| 27 | sdist |
| 28 | develop-eggs |
| 29 | .installed.cfg |
| 30 | lib |
| 31 | lib64 |
| 32 | |
| 33 | # Installer logs |
| 34 | pip-log.txt |
| 35 | |
| 36 | # Unit test / coverage reports |
| 37 | cover/ |
| 38 | .coverage* |
| 39 | !.coveragerc |
| 40 | .tox |
| 41 | nosetests.xml |
| 42 | .testrepository |
| 43 | .stestr |
| 44 | .venv |
| 45 | |
| 46 | # Translations |
| 47 | *.mo |
| 48 | |
| 49 | # Complexity |
| 50 | output/*.html |
| 51 | output/*/index.html |
| 52 | |
| 53 | # Sphinx |
| 54 | doc/build |
| 55 | |
| 56 | # pbr generates these |
| 57 | AUTHORS |
| 58 | ChangeLog |
| 59 | |
| 60 | # Files created by releasenotes build |
| 61 | releasenotes/build |
okozachenko | 301d50b | 2021-05-05 10:35:15 +0300 | [diff] [blame] | 62 | .idea/ |
| 63 | |
| 64 | # sqlite file |
| 65 | *.sqlite |
| 66 | |
| 67 | # log |
| 68 | *.log |
| 69 | |
| 70 | # envvar openrc file |
ricolin | e884f12 | 2024-11-01 16:28:13 +0800 | [diff] [blame] | 71 | *openrc.sh |