File: pyproject.toml

package info (click to toggle)
meld 3.22.3-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 5,784 kB
  • sloc: python: 14,675; xml: 317; sh: 82; makefile: 26
file content (18 lines) | stat: -rw-r--r-- 255 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18

[tool.ruff]
exclude = [
    "meld/ui/gladesupport.py",
    "setup_win32.py",
]

select = ["E4", "E7", "E9", "F", "I"]
ignore = ["E741"]

[tool.ruff.isort]
known-first-party = [
    "meld",
]
no-lines-before = [
    "local-folder",
]
order-by-type = true