-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Replace setup.cfg with pyproject.toml
- Loading branch information
1 parent
54e2cdc
commit 5abd539
Showing
2 changed files
with
70 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,70 @@ | ||
# We do our best to sync this template with the latest version in our internal documentation. | ||
# For MIT developers, we strongly recommend copying the pyproject.toml template from: | ||
# https://mitlibraries.atlassian.net/wiki/spaces/IN/pages/3432415247/Python+Project+Linters#Template-for-pyproject.toml | ||
|
||
[tool.black] | ||
line-length = 90 | ||
|
||
[tool.mypy] | ||
disallow_untyped_calls = true | ||
disallow_untyped_defs = true | ||
exclude = ["tests/"] | ||
|
||
[tool.pytest.ini_options] | ||
log_level = "INFO" | ||
|
||
[tool.ruff] | ||
target-version = "py311" | ||
|
||
# set max line length | ||
line-length = 90 | ||
|
||
# enumerate all fixed violations | ||
show-fixes = true | ||
|
||
[tool.ruff.lint] | ||
select = ["ALL", "PT"] | ||
ignore = [ | ||
# default | ||
"ANN101", | ||
"ANN102", | ||
"COM812", | ||
"D107", | ||
"N812", | ||
"PTH", | ||
|
||
# project-specific | ||
"C90", | ||
"D100", | ||
"D101", | ||
"D102", | ||
"D103", | ||
"D104", | ||
"PLR0912", | ||
"PLR0913", | ||
"PLR0915", | ||
"S320", | ||
"S321", | ||
] | ||
|
||
# allow autofix behavior for specified rules | ||
fixable = ["E", "F", "I", "Q"] | ||
|
||
[tool.ruff.lint.flake8-annotations] | ||
mypy-init-return = true | ||
|
||
[tool.ruff.lint.flake8-pytest-style] | ||
fixture-parentheses = false | ||
|
||
[tool.ruff.lint.per-file-ignores] | ||
"tests/**/*" = [ | ||
"ANN", | ||
"ARG001", | ||
"S101", | ||
] | ||
|
||
[tool.ruff.lint.pycodestyle] | ||
max-doc-length = 90 | ||
|
||
[tool.ruff.lint.pydocstyle] | ||
convention = "google" |