-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
64 lines (59 loc) · 981 Bytes
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
[project]
name = "adopt-ruff"
version = "0.1.0"
description = "Adopt Ruff faster"
readme = "README.md"
requires-python = ">=3.11"
dependencies = [
"loguru>=0.7.3",
"mdutils>=1.6.0",
"more-itertools>=10.5.0",
"packaging>=24.2",
"pydantic>=2.10.4",
"tabulate>=0.9.0",
"typer>=0.15.1",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[dependency-groups]
dev = [
"mypy>=1.14.0",
"pre-commit>=4.0.1",
"ruff>=0.8.4",
]
typing = [
"types-tabulate>=0.9.0.20241207",
]
[project.scripts]
adopt-ruff = "adopt_ruff.main:main"
[tool.ruff]
target-version = "py311"
[tool.ruff.lint]
select = ["ALL"]
ignore = [
"ISC001",
"ANN",
"D",
"DTZ",
"COM812",
"EM102",
"TRY003",
"S113",
"G003",
"G004",
"INP001",
"S501",
"PD901",
"E501",
"TD002",
"TD003",
"TD004",
"FIX002",
"EM101",
"FBT001",
"FBT002",
"S603",
"S607",
"PLR0913",
]