File: pyproject.toml

package info (click to toggle)
cvise 2.12.0-3
  • links: PTS
  • area: main
  • in suites: forky, sid
  • size: 3,772 kB
  • sloc: cpp: 26,284; python: 4,807; ansic: 1,215; lex: 441; makefile: 42
file content (13 lines) | stat: -rw-r--r-- 236 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
[tool.ruff]
exclude = ["objdir"]

line-length = 120

[tool.ruff.lint]
# Enable UP031.
ignore = ["E501", "UP031"]
select = ["B", "E", "F", "W", "UP", "C4"] # consider: ["I", "RUF"]
preview = true

[tool.ruff.format]
quote-style="single"