File: ruff-base.toml

package info (click to toggle)
createrepo-c 1.2.1-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 3,704 kB
  • sloc: ansic: 31,242; python: 4,867; xml: 2,669; sh: 367; makefile: 26; perl: 7
file content (22 lines) | stat: -rw-r--r-- 485 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
target-version = "py310"
line-length = 100

[lint]
select = []
ignore = [
  # Copyright and license notices are handled in other ways in Debian packaging
  "CPY001",

  # No blank lines before the class docstring, TYVM
  "D203",

  # The multi-line docstring summary starts on the same line
  "D213",

  # We do not document everything in the docstring
  "DOC201",
]

[lint.per-file-ignores]
# This is a command-line program, console output is part of its job
"repotest.py" = ["T201"]