[flake8]
max-line-length = 150
ignore =
    # E114 indentation is not a multiple of four (comment)
    E114,
    # E241 multiple spaces after ','
    E241,
    # E265 block comment should start with '# '
    E265,
    # E721 do not compare types, use 'isinstance()'
    E721,
    # E999 SyntaxError
    E999,
    # F401 'PyQt4.QtCore' imported but unused
    F401,
    # F401 'random' imported but unused
    F401,
    # F401 'string' imported but unused
    F401,
    # F401 'vtk.*' imported but unused
    F401,
    # F403 'from numpy import *' used; unable to detect undefined names
    F403,
    # F403 'from vtk import *' used; unable to detect undefined names
    F403,
    # F405 'XXXX' may be undefined, or defined from star imports
    F405,
    # F821 undefined name 'constant'
    F821,
    # F821 undefined name 'os'
    F821,
    # F821 undefined name 'unicode'
    F821,
    # F841 local variable 'iren_list' is assigned to but never used
    F841,
    # F841 local variable 'lcolorName' is assigned to but never used
    F841,
    # F841 local variable 'lutUtilities' is assigned to but never used
    F841,
    # F841 local variable 'pd' is assigned to but never used
    F841,
    # F841 local variable 'ptId' is assigned to but never used
    F841,
    # F841 local variable 'timerId' is assigned to but never used
    F841,
