Skip to content

Commit

Permalink
add good variable name rule
Browse files Browse the repository at this point in the history
  • Loading branch information
kevinlee12 committed Mar 6, 2016
1 parent 9a67c31 commit 0e6cc83
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .pylintrc
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,9 @@ good-names=e,_,d,f,i,l,p,w,fn,fs,id,pc,sc,zf,setUp,tearDown,longMessage,maxDiff
# Regex for dummy variables (to prevent 'unused argument' errors)
dummy-variables-rgx=_|unused_*

# Regular expression which should match good variable names
variable-rgx=[a-z_]+

[DESIGN]

# Minimum number of public methods for a class (see R0903).
Expand Down

0 comments on commit 0e6cc83

Please sign in to comment.