diff options
author | nfnty <git@nfnty.se> | 2017-02-09 15:32:33 +0100 |
---|---|---|
committer | nfnty <git@nfnty.se> | 2017-02-09 15:32:33 +0100 |
commit | bc2c56195c879275715af67cfcc65757eede0454 (patch) | |
tree | dc68734cd37a4fe5bed7d6f4303e596fe71951cb /.pylintrc | |
parent | 1a6d1846939e56a169e1584f03d352edf3ac5d76 (diff) | |
download | ranger-bc2c56195c879275715af67cfcc65757eede0454.tar.gz |
linting: Rename config files
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..d108c93f --- /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,cyclic-import,redefined-variable-type + +[TYPECHECK] +ignored-classes=ranger.core.actions.Actions |