Skip to content

Commit

Permalink
Polish up .gitignore
Browse files Browse the repository at this point in the history
  • Loading branch information
donnemartin committed May 1, 2016
1 parent 361d276 commit a841412
Showing 1 changed file with 78 additions and 30 deletions.
108 changes: 78 additions & 30 deletions .gitignore
@@ -1,22 +1,65 @@
*.pyc # Byte-compiled / optimized / DLL files
*.out __pycache__/
*.xcf *.py[cod]
*.egg *$py.class
.eggs/
lexer_table.py # C extensions
parser_table.py *.so
parser_test_table.py
gitsome/lexer_table.py # Distribution / packaging
gitsome/parser_table.py .Python
tests/lexer_table.py env/
tests/parser_table.py
tests/lexer_test_table.py
tests/parser_test_table.py
build/ build/
develop-eggs/
dist/ dist/
gitsome.egg-info/ downloads/
docs/_build/ eggs/
.eggs/
lib/
lib64/
parts/
sdist/
var/
*.egg-info/
.installed.cfg
*.egg

# 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/ .tox/
.coverage
.coverage.*
.cache
nosetests.xml
coverage.xml
*,cover
.hypothesis/

# Translations
*.mo
*.pot

# Django stuff:
*.log

# Sphinx documentation
docs/_build/

# PyBuilder
target/

#Ipython Notebook
.ipynb_checkpoints


# temporary files from vim and emacs # temporary files from vim and emacs
*~ *~
Expand All @@ -37,22 +80,27 @@ include/
scratch/ scratch/
*.egg-info/ *.egg-info/


docs/ *.pyc
scripts/ *.out
*.xcf

recipe/ recipe/
travis.yml
.appveyor.yml
appveyor.yml
.binstar.yml .binstar.yml
binstar.yml binstar.yml
.landscape.yaml .landscape.yaml
CONTRIBUTING
LICENSE.txt
license
setup.py
setup_gitsome.py
README.md
README.rst
__pycache__/
.cache/ .cache/
.coverage build/
dist/
gitsome.egg-info/
docs/_build/
.tox/

lexer_table.py
parser_table.py
parser_test_table.py
gitsome/lexer_table.py
gitsome/parser_table.py
tests/lexer_table.py
tests/parser_table.py
tests/lexer_test_table.py
tests/parser_test_table.py

0 comments on commit a841412

Please sign in to comment.