File: setup.cfg

package info (click to toggle)
python-psutil-home-assistant 0.0.1-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 120 kB
  • sloc: python: 45; makefile: 4
file content (12 lines) | stat: -rw-r--r-- 259 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
[flake8]
# To work with Black
max-line-length = 88
# E501: line too long
# W503: Line break occurred before a binary operator
# E203: Whitespace before ':'
# D202 No blank lines allowed after function docstring
ignore =
    E501,
    W503,
    E203,
    D202