Skip to content

Commit

Permalink
Changed allowed length of names in pylintrc.
Browse files Browse the repository at this point in the history
  • Loading branch information
Beliar83 committed Feb 17, 2015
1 parent cb66156 commit 8d73234
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
10 changes: 5 additions & 5 deletions pylintrc
Original file line number Diff line number Diff line change
Expand Up @@ -148,19 +148,19 @@ const-rgx=(([A-Z_][A-Z0-9_]*)|(__.*__))$
class-rgx=[A-Z_][a-zA-Z0-9]+$

# Regular expression which should only match correct function names
function-rgx=[a-z_][a-z0-9_]{2,30}$
function-rgx=[a-z_][a-z0-9_]{2,50}$

# Regular expression which should only match correct method names
method-rgx=[a-z_][a-z0-9_]{2,30}$
method-rgx=[a-z_][a-z0-9_]{2,50}$

# Regular expression which should only match correct instance attribute names
attr-rgx=[a-z_][a-z0-9_]{2,30}$
attr-rgx=[a-z_][a-z0-9_]{2,50}$

# Regular expression which should only match correct argument names
argument-rgx=[a-z_][a-z0-9_]{2,30}$
argument-rgx=[a-z_][a-z0-9_]{2,50}$

# Regular expression which should only match correct variable names
variable-rgx=[a-z_][a-z0-9_]{2,30}$
variable-rgx=[a-z_][a-z0-9_]{2,50}$

# Regular expression which should only match correct list comprehension /
# generator expression variable names
Expand Down
4 changes: 2 additions & 2 deletions settings-dist.xml
Original file line number Diff line number Diff line change
Expand Up @@ -14,14 +14,14 @@
<Setting name="Font" type="str"> fonts/FreeSans.ttf </Setting>
<Setting name="FontGlyphs" strip="0" type="str"> abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789.,!?-+/():;%&amp;`'*#=[]\"</Setting>
<Setting name="DefaultFontSize" type="int"> 16 </Setting>
<Setting name="LogModules" type="list"> controller ; script </Setting>
<Setting name="LogModules" type="list"> Controller ; script ; Loaders ; Native loaders</Setting>
<Setting name="PychanDebug" type="bool"> False </Setting>
<Setting name="LogToPrompt" type="int"> 1 </Setting>
<Setting name="UsePsyco" type="bool"> False </Setting>
<Setting name="ProfilingOn" type="bool"> False </Setting>
<Setting name="LogToFile" type="int"> 0 </Setting>
<Setting name="Lighting" type="int"> 1 </Setting>
<Setting name="LogLevelFilter" type="int"> 1 </Setting>
<Setting name="LogLevelFilter" type="int"> 0 </Setting>
<Setting name="LogModules" type="list"> instance </Setting>
</Module>
<Module name="fife-rpg">
Expand Down

0 comments on commit 8d73234

Please sign in to comment.