Skip to content

Commit 1f194f7

Browse files
authored
Clear dotfiles (#118)
1 parent 94942e7 commit 1f194f7

File tree

5 files changed

+40
-40
lines changed

5 files changed

+40
-40
lines changed

.gitreview

Lines changed: 0 additions & 4 deletions
This file was deleted.

.pylintrc

Lines changed: 0 additions & 23 deletions
This file was deleted.

mypy.ini

Lines changed: 0 additions & 8 deletions
This file was deleted.

pyproject.toml

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,46 @@ content-type = "text/x-rst"
6666
[project.scripts]
6767
doc8 = "doc8.main:main"
6868

69+
[tool.pytest]
70+
filterwarnings = [
71+
"error",
72+
# docutils planned change in 0.21 without clear solution yet
73+
"ignore:The frontend.*:DeprecationWarning"
74+
]
75+
76+
[[tool.mypy.overrides]]
77+
module = [
78+
"pbr",
79+
"restructuredtext_lint",
80+
"stevedore",
81+
]
82+
ignore_missing_imports = true
83+
84+
[tool.pylint."MESSAGES CONTROL"]
85+
86+
disable = [
87+
# TODO(ssbarnea): remove temporary skips adding during initial adoption:
88+
"attribute-defined-outside-init",
89+
"consider-using-f-string",
90+
"invalid-name",
91+
"missing-class-docstring",
92+
"missing-function-docstring",
93+
"missing-module-docstring",
94+
"no-self-use",
95+
"too-few-public-methods",
96+
"too-many-arguments",
97+
"too-many-branches",
98+
"too-many-instance-attributes",
99+
"too-many-locals",
100+
"too-many-nested-blocks",
101+
"too-many-statements",
102+
"unused-variable",
103+
"useless-object-inheritance",
104+
]
105+
106+
[tool.pylint.REPORTS]
107+
output-format = "colorized"
108+
69109
[tool.setuptools]
70110
# use-scm-version = "True" # Does not pass validate-pyproject
71111
package-dir = {"" = "src"}

pytest.ini

Lines changed: 0 additions & 5 deletions
This file was deleted.

0 commit comments

Comments
 (0)