Commit 5f74a082 authored by Dom Sekotill's avatar Dom Sekotill
Browse files

Add docstring check exceptions for test & doc code

parent 56934984
Loading
Loading
Loading
Loading
Loading
+13 −0
Original line number Diff line number Diff line
@@ -137,3 +137,16 @@ pycodestyle = [
flake8-docstrings = [
	"-D1*",
]

[tool.flakeheaven.exceptions."tests/"]
flake8-docstrings = [
	# DISABLE "Missing docstring in public module"
	# Test modules are not public modules
	"-D100",
]

[tool.flakeheaven.exceptions."README.md"]
flake8-docstrings = ["-*"]

[tool.flakeheaven.exceptions."doc/*"]
flake8-docstrings = ["-*"]