# GNU General Public License v3.0+ (see LICENSES/GPL-3.0-or-later.txt or
# https://www.gnu.org/licenses/gpl-3.0.txt)
# SPDX-License-Identifier: GPL-3.0-or-later
# SPDX-FileCopyrightText: 2023 Maxwell G <maxwell@gtmx.me>

[flake8]
count = True
# reduce to 10 later:
max-complexity = 20
max-line-length = 100
statistics = True
# These rules conflict with black
ignore = E203, E704, W503

# Line in multi-line string is too long:
per-file-ignores =
    src/antsibull_nox/init.py:E501
