failmap/admin

View on GitHub
setup.cfg

Summary

Maintainability
Test Coverage
[pep8]
max-line-length=120

[pylama:pycodestyle]
max_line_length = 120

[pylama]
# temporary ignore these errors/warnings since pylama update (10-04-2018)
# until autopep8 is able to fix these automatically
# https://github.com/hhatto/autopep8/commit/eeb0ec07c274db82a19fc2f95f5053407f2ad47d
# https://github.com/hhatto/autopep8/issues/372
# E203 black does [1 : 2] and pylama wants: [1:2]
ignore=E252,W605,E203
skip = websecmap/*/migrations/*.py
linters = pycodestyle,pyflakes

[isort]
line_length=100
known_first_party=websecmap


[coverage:run]
branch = True

[coverage:report]
skip_covered = True
show_missing = True