blob: 3c218f4152ba64eb4d9e26d46c1bdf32367a9411 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
# https://docs.astral.sh/ruff/configuration/
# https://docs.astral.sh/ruff/settings/
# https://docs.astral.sh/ruff/rules/
#
# To check option value:
# $ ruff config line-length
# $ ruff config lint.select
line-length = 120
[lint]
select = [
"E4",
"E7",
"E9",
# Pyflakes (F)
"F",
# isort (I)
"I",
# flake8-bugbear (B)
"B"
]
|