blob: a76ef30a2e493001241e780f56ecd4a030eba51d (
plain)
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
30
31
32
33
34
35
36
37
38
39
|
# SPDX-FileCopyrightText: Peter Pentchev <roam@ringlet.net>
# SPDX-License-Identifier: BSD-2-Clause
target-version = "py311"
line-length = 100
[lint]
select = []
ignore = [
# 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",
"DOC402",
"DOC501",
# The /x regex modifier is common enough in many languages
"FURB167",
]
[lint.flake8-copyright]
notice-rgx = "(?x) SPDX-FileCopyrightText: \\s \\S"
[lint.isort]
force-single-line = true
known-first-party = ["perl_weekly_285"]
lines-after-imports = 2
single-line-exclusions = ["collections.abc", "typing"]
[lint.per-file-ignores]
# This is a command-line tool; console output is part of its job.
"src/perl_weekly_285/__main__.py" = ["T201"]
# This is a test suite
"tests/unit/**.py" = ["S101", "T201"]
|