-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
57 lines (52 loc) · 924 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
[tool.poetry]
name = "website"
version = "0.1.0"
description = ""
authors = ["Hannes <[email protected]>"]
readme = "README.md"
[tool.ruff.lint]
select = ["ALL"]
ignore = [
"ANN101",
"C901",
"COM812",
"COM819",
"D1",
"D203",
"D212",
"E501",
"EM",
"ERA001",
"FA100",
"FA102",
"FBT003",
"FIX",
"G004",
"ISC003",
"PLR0913",
"PYI041",
"RET505",
"S",
"S101",
"S106",
"SIM118",
"T20",
"TCH002",
"TD",
"TRY003",
"UP006",
"UP015",
]
unfixable = ["F401", "ISC001"]
[tool.ruff.lint.flake8-import-conventions.extend-aliases]
"logging.getLogger" = "get_logger"
"xml.dom.minidom.parseString" = "parse_xml_string"
"datetime.date" = "PyDate"
"datetime.datetime" = "PyDateTime"
[tool.ruff.lint.pep8-naming]
extend-ignore-names = ["get_logger", "parse_xml_string", "PyDate", "PyDateTime"]
[tool.ruff.lint.isort]
combine-as-imports = true
[tool.mypy]
packages = "website"
strict = true