[flake8]
ignore = C101,I002,Q000,WPS11
per-file-ignores:
  functional_itertools/__init__.py:WPS410,WPS412
  tests/*.py:D100,D103,D104,S101
    # C101   - Coding magic comment not found
    # I002   - no configuration found (.isort.cfg or [isort] in configs)
    # D100   - Missing docstring in public module
    # D103   - Missing docstring in public function
    # D104   - Missing docstring in public package
    # Q000   - Remove bad quotes
    # S101   - Use of assert detected
    # WPS111 - Found too short name
    # WPS410 - Found wrong metadata variable
    # WPS412 - Found `__init__.py` module with logic

docstring-convention = google
