File: .flake8

package info (click to toggle)
python-trame-client 3.11.2-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 3,128 kB
  • sloc: python: 9,609; javascript: 3,897; sh: 9; makefile: 6
file content (17 lines) | stat: -rw-r--r-- 387 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
[flake8]

ignore =
    # Black and flake8 conflict here
    E203
    # Just assume black did a good job with the line lengths
    E501
    # Black and flake8 conflict here
    W503

exclude =
    # These are auto-generated. Just ignore any issues.
    trame_client/widgets/html.py

per-file-ignores =
    # These directories will always contain "from ... import *"
    trame/*:F401,F403