diff options
Diffstat (limited to 'pylintrc')
-rw-r--r-- | pylintrc | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/pylintrc b/pylintrc new file mode 100644 index 00000000..935c58f4 --- /dev/null +++ b/pylintrc @@ -0,0 +1,14 @@ +[BASIC] +good-names=i,j,k,n,x,y,ex,Run,_,fm,ui,fg,bg +bad-names=foo,baz,toto,tutu,tata + +[DESIGN] +max-args=6 +max-branches=16 + +[FORMAT] +max-line-length = 99 +disable=locally-disabled,locally-enabled,missing-docstring,duplicate-code,fixme,broad-except,cyclic-import + +[TYPECHECK] +ignored-classes=ranger.core.actions.Actions |