Add flake8 ignore for demo

This commit is contained in:
Roman Mogylatov 2020-09-21 16:55:42 -04:00
parent b7efb1e3e2
commit 170263de4d
2 changed files with 2 additions and 2 deletions

View File

@ -1,2 +0,0 @@
[pydocstyle]
ignore = F841

View File

@ -2,6 +2,8 @@
max_line_length = 100 max_line_length = 100
max_complexity = 10 max_complexity = 10
exclude = types.py exclude = types.py
per-file-ignores =
examples/demo/*: F841
[pydocstyle] [pydocstyle]
ignore = D100,D101,D102,D105,D106,D107,D203,D213 ignore = D100,D101,D102,D105,D106,D107,D203,D213