# Use pylint --generate-rcfile for a full example

[MASTER]

ignore=ui_main.py,ui_about.py,bitnomon_rc.py

[MESSAGES CONTROL]

# Enable the message, report, category or checker with the given id(s). You can
# either give multiple identifier separated by comma (,) or put this option
# multiple time. See also the "--disable" option for examples.
#enable=

# Disable the message, report, category or checker with the given id(s). You
# can either give multiple identifiers separated by comma (,) or put this
# option multiple times (only on the command line, not in the configuration
# file where it should appear only once).You can also use "--disable=all" to
# disable everything first and then reenable specific checks. For example, if
# you want to run only the similarities checker, you can use "--disable=all
# --enable=similarities". If you want to run only the classes checker, but have
# no Warning level messages displayed, use"--disable=all --enable=classes
# --disable=W"
disable=star-args,global-statement

[REPORTS]

# Set the output format. Available formats are text, parseable, colorized, msvs
# (visual studio) and html. You can also give a reporter class, eg
# mypackage.mymodule.MyReporterClass.
output-format=colorized

# Put messages in a separate file for each module / package specified on the
# command line instead of printing them on stdout. Reports (if any) will be
# written in a file name "pylint_global.[txt|html]".
files-output=no

# Tells whether to display a full report or only the messages
reports=yes

[BASIC]

attr-rgx     = [a-z_][a-zA-Z0-9_]{0,30}$
variable-rgx = [a-z_][a-zA-Z0-9_]{0,30}$
argument-rgx = [a-z_][a-zA-Z0-9_]{0,30}$
method-rgx   = [a-z_][a-zA-Z0-9_]{2,30}$
function-rgx = [a-z_][a-zA-Z0-9_]{2,30}$
const-rgx    = (([A-Z_][A-Z0-9_]*)|(__.*__)|([a-z_][a-zA-Z0-9_]{2,30}))$

[TYPECHECK]

ignored-modules=numpy
