[MAIN]

# Specify a score threshold under which the program will exit with error.
fail-under=9

# Files or directories to be skipped. They should be base names, not paths.
ignore=.git,
      .venv,
      __pycache__

[FORMAT]
# Maximum number of characters on a single line.
max-line-length=88

[MESSAGES CONTROL]
enable = broad-except

# Disable the message, report, category or checker with the given id(s).
# disable=missing-docstring

# List of note tags to take in consideration, separated by a comma.
notes=FIXME,
      XXX,
      TODO
