-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
31 lines (28 loc) · 916 Bytes
/
Copy pathpyproject.toml
File metadata and controls
31 lines (28 loc) · 916 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
[project]
name = "python-template"
version = "0.1.0"
description = "Python project template"
requires-python = ">=3.10"
dependencies = []
[dependency-groups]
dev = ["ruff"]
[tool.ruff]
line-length = 99
lint.select = ["ALL", "E402"]
lint.ignore = [
"D100", # undocumented-public-module: module docstrings not required
"D203", # incorrect-blank-line-before-class: conflicts with D211
"D213", # multi-line-summary-second-line: conflicts with D212
"COM812", # missing-trailing-comma: conflicts with the formatter
"CPY001", # missing-copyright-notice: no copyright header in this template
"T201", # print: print() is intentional here
]
lint.extend-select = ["I"]
fix = true
[tool.pyright]
reportUnknownMemberType = "none"
reportUnknownArgumentType = "none"
reportUnknownParameterType = "none"
reportUnknownVariableType = "none"
reportPrivateImportUsage = "none"
reportMissingTypeStubs = false