diff options
author | Bryan Newbold <bnewbold@robocracy.org> | 2018-05-16 19:26:26 -0700 |
---|---|---|
committer | Bryan Newbold <bnewbold@robocracy.org> | 2018-05-16 19:26:26 -0700 |
commit | e73f763eebadc268062e3d1a9cbc1cb91082f569 (patch) | |
tree | 915f974806cb5b0b5f8291a1fbe0aebc52189e07 /python | |
parent | a37f25df43e77b51ff3299e7a13ff35126362740 (diff) | |
download | fatcat-e73f763eebadc268062e3d1a9cbc1cb91082f569.tar.gz fatcat-e73f763eebadc268062e3d1a9cbc1cb91082f569.zip |
more CI tweaks
Diffstat (limited to 'python')
-rw-r--r-- | python/.coveragerc | 3 | ||||
-rw-r--r-- | python/.pylintrc | 11 |
2 files changed, 14 insertions, 0 deletions
diff --git a/python/.coveragerc b/python/.coveragerc new file mode 100644 index 00000000..6235f57d --- /dev/null +++ b/python/.coveragerc @@ -0,0 +1,3 @@ +[run] +omit = tests/* +source = . diff --git a/python/.pylintrc b/python/.pylintrc new file mode 100644 index 00000000..2a7b9797 --- /dev/null +++ b/python/.pylintrc @@ -0,0 +1,11 @@ +[MESSAGES CONTROL] +# TODO: should re-enable some of these +disable=C0323,W0142,C0301,C0103,C0111,E0213,C0302,C0203,W0703,R0201,W0223,bad-continuation,arguments-differ,unidiomatic-typecheck,unused-wildcard-import,no-member,cyclic-import,too-few-public-methods,wildcard-import,too-many-locals,too-many-ancestors,unused-import + +[REPORTS] +output-format=colorized +include-ids=yes + +[MISCELLANEOUS] +# List of note tags to take in consideration, separated by a comma. +notes=FIXME,XXX,DELETEME |