-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpyproject.toml
39 lines (31 loc) · 1.11 KB
/
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
[project]
version = "1.3.0"
[tool.commitizen]
version = "1.3.0"
update_changelog_on_bump = true
changelog_file = "CHANGELOG.md"
changelog_incremental = true
version_files = [
"pyproject.toml:version",
]
[tool.ruff]
ignore-init-module-imports = true
fix = true
select = ["E", "F", "W", "I", "D", "RUF"]
ignore = [
"E501", # line too long | Black take care of it
"W605", # invalid escape sequence | we escape specific characters for sphinx
"D200", # One-line docstring should fit on one line | too late
"D101", # Missing docstring in public class | set it in __init__
"D107", # Missing docstring in `__init__`
"D417", # Missing argument descriptions in the docstring
"F403", # unable to detect undefined names because of import * (too many)
"D100", # Missing docstring in public module
"D103", # Missing docstring in public function (some day maybe)
"D104", # Missing docstring in public package (some day maybe)
"D102", # Missing docstring in public method (some day maybe)
]
[tool.ruff.flake8-quotes]
docstring-quotes = "double"
[tool.ruff.pydocstyle]
convention = "google"