diff options
| author | Dylan Araps <dylan.araps@gmail.com> | 2018-01-02 10:58:24 +1100 |
|---|---|---|
| committer | Dylan Araps <dylan.araps@gmail.com> | 2018-01-02 10:58:24 +1100 |
| commit | 1155d190b87f72c9b19b10c101f7828e7b782cf8 (patch) | |
| tree | 74a08b79b5e4c2a5059f41f3ca542966cfaf53b4 | |
| parent | f5fd77b8d0bb8a21bd0f63a4e2df57f6e13fc4b2 (diff) | |
pylint: Fix false positives.
| -rw-r--r-- | .pylintrc | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -1,5 +1,5 @@ [BASIC] -good-names=i,j,k,n,x,y,fg,bg,r,g,b +good-names=i,j,k,n,x,y,fg,bg,r,g,b,i3 [MESSAGES CONTROL] # inconsistent-return-statements: @@ -8,3 +8,6 @@ good-names=i,j,k,n,x,y,fg,bg,r,g,b # Disabled as it's a non-issue and only occurs in the # process_args() function. disable=inconsistent-return-statements,too-many-branches + +[SIMILARITIES] +ignore-imports=y |
