File: .flake8

package info (click to toggle)
ndcube 2.3.4-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 2,012 kB
  • sloc: python: 7,838; makefile: 34
file content (27 lines) | stat: -rw-r--r-- 526 bytes parent folder | download | duplicates (2)
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
    ndcube/__init__.py
rst-directives =
    plot