diff options
| author | Dylan Araps <dylan.araps@gmail.com> | 2018-01-02 10:53:50 +1100 |
|---|---|---|
| committer | Dylan Araps <dylan.araps@gmail.com> | 2018-01-02 10:53:50 +1100 |
| commit | f5fd77b8d0bb8a21bd0f63a4e2df57f6e13fc4b2 (patch) | |
| tree | aa845a02b7c6196fbc72e1c77808a9a83d6319d1 | |
| parent | c46c20856159aba67f07d07b07682eff508e282b (diff) | |
general: Add pylintrc.
| -rw-r--r-- | .pylintrc | 7 |
1 files changed, 6 insertions, 1 deletions
@@ -2,4 +2,9 @@ good-names=i,j,k,n,x,y,fg,bg,r,g,b [MESSAGES CONTROL] -disable=inconsistent-return-statements +# inconsistent-return-statements: +# Disabled as it's a false-positive and a bug in pylint. +# too-many-branches: +# Disabled as it's a non-issue and only occurs in the +# process_args() function. +disable=inconsistent-return-statements,too-many-branches |
