mirror of
https://github.com/ejwa/gitinspector.git
synced 2025-03-11 19:18:53 +01:00
Added some additional settings to .pylintrc.
These changes are needed for pylint to play nice with any gettext (GNU) localization.
This commit is contained in:
parent
b5ba665ae4
commit
6a54e5bfc6
1 changed files with 4 additions and 1 deletions
|
@ -3,7 +3,7 @@ include-ids=yes
|
||||||
comment=yes
|
comment=yes
|
||||||
|
|
||||||
[MESSAGES CONTROL]
|
[MESSAGES CONTROL]
|
||||||
disable=C0111,R0801,W0232,W0603,W0702
|
disable=C0111,R0801,W0232,W0603,W0622,W0702
|
||||||
|
|
||||||
|
|
||||||
[DESIGN]
|
[DESIGN]
|
||||||
|
@ -12,3 +12,6 @@ min-public-methods=0
|
||||||
[FORMAT]
|
[FORMAT]
|
||||||
max-line-length=130
|
max-line-length=130
|
||||||
indent-string='\t'
|
indent-string='\t'
|
||||||
|
|
||||||
|
[VARIABLES]
|
||||||
|
additional-builtins=_
|
||||||
|
|
Loading…
Reference in a new issue