Skip to content

Commit

Permalink
Testing: Ignore certain errors in ciocheck
Browse files Browse the repository at this point in the history
[ci skip]
  • Loading branch information
ccordoba12 committed Dec 14, 2016
1 parent f7d1270 commit 705a9a9
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .ciocheck
Original file line number Diff line number Diff line change
Expand Up @@ -20,15 +20,15 @@ add_init = true
# -----------------------------------------------------------------------------
[pep8]
exclude = */tests/*
ignore = E126,
ignore = E126, E402,
max-line-length = 79

# -----------------------------------------------------------------------------
# pydocstyle
# http://www.pydocstyle.org/en/latest/usage.html#example
# -----------------------------------------------------------------------------
[pydocstyle]
add-ignore = D203
add-ignore = D203, D400
inherit = false

# -----------------------------------------------------------------------------
Expand All @@ -37,7 +37,7 @@ inherit = false
# -----------------------------------------------------------------------------
[flake8]
exclude = */tests/*
ignore = E126,
ignore = E126, E402,
max-line-length = 79
max-complexity = 64

Expand Down

0 comments on commit 705a9a9

Please sign in to comment.