Skip to content

Commit

Permalink
Clear dotfiles (#118)
Browse files Browse the repository at this point in the history
  • Loading branch information
ssbarnea committed Dec 21, 2022
1 parent 94942e7 commit 1f194f7
Show file tree
Hide file tree
Showing 5 changed files with 40 additions and 40 deletions.
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.

0 comments on commit 1f194f7

Please sign in to comment.