File: ruff-base.toml

package info (click to toggle)
python-regex 0.1.20241106-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 3,648 kB
  • sloc: ansic: 49,917; python: 8,677; makefile: 15; sh: 7
file content (28 lines) | stat: -rw-r--r-- 604 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
23
24
25
26
27
28
target-version = "py311"
line-length = 100

[lint]
select = []
ignore = [
  # Copyright and license information is handled elsewhere in Debian packages
  "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 docstrings
  "DOC201",
  "DOC501",

  # The /x regex modifier is common enough in many languages
  "FURB167",
]

[lint.isort]
force-single-line = true
known-first-party = ["temptest"]
lines-after-imports = 2
single-line-exclusions = ["collections.abc", "typing"]