summaryrefslogtreecommitdiff
path: root/pyproject.toml
blob: ebcd7e8de21286e7fef21902890ccb52ed1a6c49 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
[tool.black]
line-length = 120
target-version = ['py38']
skip-string-normalization = true

[tool.ruff]
# Set what ruff should check for.
# See https://beta.ruff.rs/docs/rules/ for a list of rules.
select = [
    "E", # pycodestyle errors
    "F", # pyflakes errors
    "I", # import sorting
    "W", # pycodestyle warnings
]
line-length = 120  # To match black.
target-version = 'py38'

[tool.ruff.isort]
known-first-party = ["rq"]
section-order = ["future", "standard-library", "third-party", "first-party", "local-folder"]