We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent aec92c5 commit b2b63cfCopy full SHA for b2b63cf
pyproject.toml
@@ -97,6 +97,22 @@ force-exclude = """
97
98
# -- Linting ---------------------------------------------------------------------------
99
100
+[tool.flake8]
101
+max-line-length = 88
102
+ignore = ["D203"]
103
+extend-ignore = ["E203", "W503"]
104
+per-file-ignores = ["__init__.py:F401"]
105
+exclude = [
106
+ ".git",
107
+ ".idea",
108
+ "__pycache__",
109
+ "build",
110
+ "dist",
111
+ "*/structs.py",
112
+ "*/_version.py",
113
+ "docs/*",
114
+]
115
+
116
[tool.pydocstyle]
117
add_ignore = [
118
"D105", # ignore undocumented dunder methods like ``__str__`
0 commit comments