Skip to content
This repository has been archived by the owner on May 15, 2018. It is now read-only.

Commit

Permalink
add setup.cfg
Browse files Browse the repository at this point in the history
  • Loading branch information
bryevdv committed May 16, 2017
1 parent 6b78c20 commit 2d4824f
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
[flake8]
# References:
# http://flake8.readthedocs.org/en/latest/config.html
# http://flake8.readthedocs.org/en/latest/warnings.html#error-codes
#
# Style checks turned on:
# F - all pyflake errors
# E101 - indentation contains mixed spaces and tabs
# E111 - indentation is not a multiple of four
# E501 - line too long (see max-line-length)

# Note: there cannot be spaces after comma's here
exclude = __init__.py
ignore = E,W
select = F,E101,E111,E501
max-line-length = 165

[tool:pytest]
norecursedirs = build _build node_modules
python_files = *_tests.py *_test.py test_*.py

0 comments on commit 2d4824f

Please sign in to comment.