diff options
author | Zachary Sloan | 2013-04-24 23:30:18 +0000 |
---|---|---|
committer | Zachary Sloan | 2013-04-24 23:30:18 +0000 |
commit | 00f20d2d650c44794a8d21aad45d748e9aa0365b (patch) | |
tree | 5f0cf5537d5bc7002c5e179b626004fceeb041a8 /wqflask/other_config/pylintrc | |
parent | 7223bae7ee981618fd3c2d8cb602b17da2661151 (diff) | |
download | genenetwork2-00f20d2d650c44794a8d21aad45d748e9aa0365b.tar.gz |
Began writing code that writes some objects used in LMM to redis
and writes/reads eachitem in the plink_input
Diffstat (limited to 'wqflask/other_config/pylintrc')
-rw-r--r-- | wqflask/other_config/pylintrc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/wqflask/other_config/pylintrc b/wqflask/other_config/pylintrc index 36d2bddf..b23af7a4 100644 --- a/wqflask/other_config/pylintrc +++ b/wqflask/other_config/pylintrc @@ -38,7 +38,7 @@ load-plugins= # --enable=similarities". If you want to run only the classes checker, but have # no Warning level messages displayed, use"--disable=all --enable=classes # --disable=W" -#disable= +disable=no-init, star-args, no-member, import-error [REPORTS] @@ -115,7 +115,7 @@ bad-functions=map,filter,apply,input module-rgx=(([a-z_][a-z0-9_]*)|([A-Z][a-zA-Z0-9]+))$ # Regular expression which should only match correct module level names -const-rgx=(([A-Z_][A-Z0-9_]*)|(__.*__))$ +const-rgx=(([A-Z_][A-Za-z0-9_]*)|(__.*__))$ # Regular expression which should only match correct class names class-rgx=[A-Z_][a-zA-Z0-9]+$ @@ -153,7 +153,7 @@ no-docstring-rgx=__.*__ [FORMAT] # Maximum number of characters on a single line. -max-line-length=80 +max-line-length=100 # Maximum number of lines in a module max-module-lines=1000 |