File: .flake8

package info (click to toggle)
mpl-animators 1.2.1-1
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 360 kB
  • sloc: python: 1,367; makefile: 18
file content (27 lines) | stat: -rw-r--r-- 533 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
[flake8]
ignore =
    # missing-whitespace-around-operator
    E225
    # missing-whitespace-around-arithmetic-operator
    E226
    # line-too-long
    E501
    # unused-import
    F401
    # undefined-local-with-import-star
    F403
    # redefined-while-unused
    F811
    # Line break occurred before a binary operator
    W503,
    # Line break occurred after a binary operator
    W504
max-line-length = 110
exclude =
    .git
    __pycache__
    docs/conf.py
    build
    mpl_animators/__init__.py
rst-directives =
    plot