summaryrefslogtreecommitdiff
path: root/setup.cfg
blob: 6c3d32cbc92fd0e55d2c8d9057d6ff1ab545615a (plain)
1
2
3
4
5
6
7
8
[pycodestyle]
# refer to: https://pep8.readthedocs.io/en/1.4.6/intro.html#error-codes
# E402: module level import not at top of file
# W503: line break before binary operator
#
ignore = E402,W503
show-source = true
statistics = true