[MESSAGES CONTROL]
disable = 
    unknown-option-value,
    C0415,                      # import-outside-toplevel
    W0718,                      # Catching too general exception
    W0603,                      # Using the global statement
    W0105,                      # pointless-string-statement
    E0601,                      # used-before assignment
    C0103,                      # doesn't conform to snake_case naming
    redefined-outer-name,       # I think this one is stupid
    E1101,                      # Instance has no member
    R0914,                      # Too many local variables
    C0321,                      # Multiple Statements on same line
    R0911,                      # Too many return statements
    R0903,                      # Too few public methods

[MASTER]
ignore-paths=
    ^.*\.pyi$,
    examples/introduction\.py$


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