File: .flake8

package info (click to toggle)
sunpy 7.1.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 12,632 kB
  • sloc: python: 41,887; ansic: 1,720; makefile: 28
file content (29 lines) | stat: -rw-r--r-- 570 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
28
29
[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
    sunpy/data/sample.py
    sunpy/extern/**
    sunpy/__init__.py
rst-directives =
    plot