File: pyproject.toml

package info (click to toggle)
python-upsetplot 0.9.0-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,188 kB
  • sloc: python: 2,772; makefile: 153; sh: 12
file content (24 lines) | stat: -rw-r--r-- 384 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
[tool.ruff]
extend-include = ["*.ipynb"]
target-version = "py38"

[tool.ruff.lint]
# see https://docs.astral.sh/ruff/rules/
select = [
    # Pyflakes
    "F",
    # Pycodestyle
    "E",
    "UP",
    "W",
    # isort
    "I",
    "B",  # bugbear
    "C4",  # comprehensions
    "PT",  # pytest
    "SIM",  # simplify
]
ignore = [
    "B007",  # breaks for pandas.query
    "PT011",
]