Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Clear dotfiles #118

Merged
merged 1 commit into from Dec 21, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 0 additions & 4 deletions .gitreview

This file was deleted.

23 changes: 0 additions & 23 deletions .pylintrc

This file was deleted.

8 changes: 0 additions & 8 deletions mypy.ini

This file was deleted.

40 changes: 40 additions & 0 deletions pyproject.toml
Expand Up @@ -66,6 +66,46 @@ content-type = "text/x-rst"
[project.scripts]
doc8 = "doc8.main:main"

[tool.pytest]
filterwarnings = [
"error",
# docutils planned change in 0.21 without clear solution yet
"ignore:The frontend.*:DeprecationWarning"
]

[[tool.mypy.overrides]]
module = [
"pbr",
"restructuredtext_lint",
"stevedore",
]
ignore_missing_imports = true

[tool.pylint."MESSAGES CONTROL"]

disable = [
# TODO(ssbarnea): remove temporary skips adding during initial adoption:
"attribute-defined-outside-init",
"consider-using-f-string",
"invalid-name",
"missing-class-docstring",
"missing-function-docstring",
"missing-module-docstring",
"no-self-use",
"too-few-public-methods",
"too-many-arguments",
"too-many-branches",
"too-many-instance-attributes",
"too-many-locals",
"too-many-nested-blocks",
"too-many-statements",
"unused-variable",
"useless-object-inheritance",
]

[tool.pylint.REPORTS]
output-format = "colorized"

[tool.setuptools]
# use-scm-version = "True" # Does not pass validate-pyproject
package-dir = {"" = "src"}
Expand Down
5 changes: 0 additions & 5 deletions pytest.ini

This file was deleted.