Commit be49e073b5853e450cce5bb74d820a4a5a75651b

Authored by Goutte
1 parent 5ac6c39b
Exists in master

Add a basic list of ignored files during versioning.

Showing 1 changed file with 43 additions and 0 deletions   Show diff stats
.gitignore 0 → 100644
... ... @@ -0,0 +1,43 @@
  1 +*.pyc
  2 +*.pyo
  3 +*.swp
  4 +*~
  5 +
  6 +# Packages
  7 +*.egg
  8 +*.egg-info
  9 +dist
  10 +build/
  11 +eggs
  12 +sdist
  13 +
  14 +# OS
  15 +.directory
  16 +
  17 +# Sphinx builds
  18 +_build
  19 +
  20 +# Installer logs
  21 +pip-log.txt
  22 +
  23 +# Flake8 violation file
  24 +violations.flake8.txt
  25 +
  26 +# Unit test / coverage reports
  27 +.coverage
  28 +.tox
  29 +nosetests.xml
  30 +__pycache__
  31 +database.db
  32 +
  33 +# Sphinx
  34 +docs/_build
  35 +
  36 +# Virtual environments
  37 +venv
  38 +venv*
  39 +
  40 +.webassets-cache
  41 +.DS_Store
  42 +*.sublime-*
  43 +.cache/
... ...