12345678910111213141516171819202122232425262728293031323334353637383940 |
- [flake8]
- max-line-length = 110
- exclude =
- .git,
- __pycache__,
- .pytest_cache,
- *.egg-info,
- docs/source/conf.py
- old,
- build,
- dist,
- htmlcov,
- .tox,
- dist,
- ignore =
-
- D107,
- D105,
-
- W503
- per-file-ignores =
- */pydolphinscheduler/side/__init__.py:F401
- */pydolphinscheduler/tasks/__init__.py:F401
|