Skip to content
Snippets Groups Projects
.pylintrc 397 B
Newer Older
[BASIC]

# Good variable names which should always be accepted, separated by a comma
good-names=i,j,k,t,t0,fs,dt,tt

[MESSAGE CONTROL]

disable=too-many-instance-attributes

[FORMAT]

# Maximum number of characters on a single line.
max-line-length=120

[DESIGN]

# Maximum number of locals for function / method body
max-locals=20

# Maximum number of arguments for function / method
max-args=10