File: ruff.toml

package info (click to toggle)
torf 4.3.0-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 988 kB
  • sloc: python: 10,054; makefile: 15; sh: 8
file content (17 lines) | stat: -rw-r--r-- 237 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
line-length = 120

lint.select = [
  "E",   # pycodestyle
  "F",   # pyflakes
  "I",   # isort
]

[lint.per-file-ignores]
"__init__.py" = [
    # <module> imported but unused
    "F401",
]
"tests/*" = [
    # Line too long
    "E501",
]