[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
    
[MASTER]
ignore-paths=^.*\.pyi$

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