cryptonas/src/pylintrc

45 lines
1.0 KiB
INI

# this is a local configuration file for pylint to be used for checking the
# quality of the CryptoBox code
#
# just run:
# bin/do_pylint.sh cryptobox.core.main
# to check the module cryptobox.core.main
[MASTER]
# Add <file or directory> to the black list. It should be a base name, not a
# path. You may set this option multiple times.
ignore=CVS
ignore=.svn
[BASIC]
# Required attributes for module, separated by a comma
required-attributes=__revision__
# Good variable names which should always be accepted, separated by a comma
good-names=i,j,k,ex,Run,_
# Bad variable names which should always be refused, separated by a comma
bad-names=foo,bar,baz,toto,tutu,tata
[FORMAT]
# Maximum number of characters on a single line.
max-line-length=88
# Maximum number of lines in a module
max-module-lines=1000
# String used as indentation unit. This is usually " " (4 spaces) or "\t" (1
# tab).
indent-string=' '
[MISCELLANEOUS]
# List of note tags to take in consideration, separated by a comma.
notes=FIXME,XXX,TODO