Skip to content

Commit

Permalink
Merge pull request #3836 from ccordoba12/ciocheck-improvements
Browse files Browse the repository at this point in the history
Ignore some superflous errors reported by ciocheck

[ci skip]
  • Loading branch information
ccordoba12 authored Dec 14, 2016
2 parents f7d1270 + 705a9a9 commit 8e99fbb
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 8e99fbb

Please sign in to comment.