forked from aran159/python-cicd-kata
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
53 lines (48 loc) · 825 Bytes
/
Copy pathpyproject.toml
File metadata and controls
53 lines (48 loc) · 825 Bytes
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
[project]
name = "python-cicd-kata"
version = "0.1.0"
description = "Python project to practice CI/CD concepts"
readme = "README.md"
requires-python = ">=3.13"
dependencies = [
"fastapi[standard]>=0.115.8",
]
[dependency-groups]
dev = [
"pyright>=1.1.394",
"pytest>=8.3.4",
"ruff>=0.9.6",
]
[tool.pyright]
strict = ["**/*"]
[tool.ruff]
line-length = 150
[tool.ruff.lint]
select = ["ALL"]
ignore = [
"D211",
"D213",
"D100",
"D103",
"D104",
"D107",
"TD002",
"TD003",
"FIX002",
"FBT001",
"FBT002",
"INP001",
"D101",
"FA100",
"FA102",
"DTZ001",
"T201",
"PLR0913",
"S608",
# Rules cause conflicts when used with the formatter
"ISC001",
"COM812",
"D203",
]
[tool.ruff.lint.per-file-ignores]
"tests/**" = ["D", "S101"]