forked from radiocosmology/caput
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
34 lines (30 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
[build-system]
requires = ["setuptools", "wheel", "Cython", "oldest-supported-numpy"]
[tool.ruff]
# Enable pycodestyle ('E'), pydocstyle ('D'), pyflakes ('F')
select = ["E", "D", "F"]
# E203, W503
ignore = [
"E501", # E501: line length violations. Enforce these with `black`
"E741", # E741: Ambiguous variable name
"D105", # D105: Missing docstring in magic method
"D107", # D107: Missing docstring in init
"D203", # D203: 1 blank line required before class docstring
"D213", # D213: Multi-line docstring summary should start at the second line
"D400", # D400: First line should end with a period (only ignoring this because there's another error that catches the same thing)
"D401", # D401: First line should be in imperative mood
"D402", # D402: First line should not be the function’s “signature”
"D413", # D413: Missing blank line after last section
"D416", # D416: Section name should end with a colon
]
# Ignore the following directories
exclude = [
".git",
".github",
"build",
"doc",
"tests",
"setup.py",
"versioneer.py",
]
target-version = "py311"