Skip to content

Commit

Permalink
RF: adjust pylint message control in pylintrc
Browse files Browse the repository at this point in the history
  • Loading branch information
jeremygray committed Feb 16, 2016
1 parent f38ed78 commit 394b353
Showing 1 changed file with 7 additions and 12 deletions.
19 changes: 7 additions & 12 deletions psychopy/pylintrc
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
# Try to avoid introducing issues in new code, but don't fix such issues in existing code.

[MASTER]
ignore=.git,freetype_bf,daq,pyglet_input,labjack,contrib,iohub,demos,tests
ignore=.git,freetype_bf,daq,pyglet_input,labjack,contrib,demos,tests,iohub

[BASIC]
good-names=i,j,k,x,y,__,so,se
Expand All @@ -43,27 +43,22 @@ single-line-if-stmt=no

[MESSAGES CONTROL]
# Disable the following PyLint messages:
# C0103: invalid * name
# C0103: invalid * name; otherwise camelCase gets flagged
# C0111: Missing %s docstring;
# E1101: %s %r has no %r member; otherwise numpy triggers this all the time

# Some other possible messages:
# C0301: line too long
# C0302: too many lines in module (1000)
# C0303: Trailing whitespace
# C0326: %s space %s %s %s\n%s
# C0111: Missing %s docstring
# C1001: Old-style class defined.
# W0142: Used * or ** magic
# W0201: Attribute %r defined outside __init__
# W0613: Unused argument %r
# W0122: use of exec
# W0212: Access to a protected member %s of a client class
# R0902: Too many instance attributes (%s/%s)
# E1101: %s %r has no %r member
# E0602: Undefined variable %r

disable=C0103,C0111,C0301,C0302,
#C0303,C0326,C1001,
#W0122,
W0142,
#,W0201,W0212,W0613,
#R0902,
#E0602,
E1101
disable=C0103,C0111,E1101

0 comments on commit 394b353

Please sign in to comment.