summaryrefslogtreecommitdiffstats
path: root/Tools/build/.ruff.toml
blob: 53bfe18f8de1b8527751b014b51b2c17faac4587 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
target-version = "py310"
fix = true
line-length = 79

[lint]
select = [
    "C4",      # flake8-comprehensions
    "E",       # pycodestyle
    "F",       # pyflakes
    "I",       # isort
    "ISC",     # flake8-implicit-str-concat
    "LOG",     # flake8-logging
    "PGH",     # pygrep-hooks
    "PT",      # flake8-pytest-style
    "PYI",     # flake8-pyi
    "RUF100",  # Ban unused `# noqa` comments
    "UP",      # pyupgrade
    "W",       # pycodestyle
    "YTT",     # flake8-2020
]