mirror of
https://github.com/wagtail/wagtail.git
synced 2024-11-22 02:18:39 +01:00
11 lines
434 B
TOML
11 lines
434 B
TOML
# D100: Missing docstring in public module
|
|
# D101: Missing docstring in public class
|
|
# D102: Missing docstring in public method
|
|
# D103: Missing docstring in public function
|
|
# D105: Missing docstring in magic method
|
|
# N806: Variable in function should be lowercase
|
|
# E501: Line too long
|
|
ignore = ["D100","D101","D102","D103","D105","N806","E501"]
|
|
exclude = ["wagtail/project_template/*","node_modules","venv",".venv"]
|
|
line-length = 88
|