File: ruff.toml

package info (click to toggle)
python-renault-api 0.5.2-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 1,696 kB
  • sloc: python: 7,804; makefile: 2
file content (13 lines) | stat: -rw-r--r-- 255 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
# This extend our general Ruff rules specifically for tests
extend = "../pyproject.toml"

[lint]
extend-ignore = [
    "PLR2004", # Magic value used in comparison, consider replacing
]

[lint.isort]
known-first-party = [
    "renault-api",
    "tests",
]