Skip to content
This repository has been archived by the owner on May 10, 2019. It is now read-only.

Commit

Permalink
Browse files Browse the repository at this point in the history
Add a pylintrc file
Since the existing code used camelCase, add a pylintrc file that is in
line with this format. To use this file export the PYLINTRC variable:

    export PYLINTRC=$PWD/.pylintrc
    pylint
  • Loading branch information
richq committed Mar 2, 2014
1 parent 666cffa commit 3691ff2
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .pylintrc
@@ -0,0 +1,8 @@
# export PYLINTRC=$PWD/.pylintrc
[BASIC]
function-rgx=_?[a-z][A-Za-z0-9]{1,30}$
method-rgx=_?[a-z][A-Za-z0-9]{1,30}$
attr-rgx=_?[a-z][A-Za-z0-9]{1,30}$
argument-rgx=_?[a-z][A-Za-z0-9]{1,30}$
variable-rgx=_?[a-z][A-Za-z0-9]{1,30}$
inlinevar-rgx=_?[a-z][A-Za-z0-9]{1,30}$

0 comments on commit 3691ff2

Please sign in to comment.