From 904094281b062aff3445ca41fec57e4cfd0f563d Mon Sep 17 00:00:00 2001 From: Matthew Sotoudeh Date: Tue, 10 Nov 2020 14:06:35 -0800 Subject: Initial code release --- .pylintrc | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 .pylintrc (limited to '.pylintrc') diff --git a/.pylintrc b/.pylintrc new file mode 100644 index 0000000..1c6030a --- /dev/null +++ b/.pylintrc @@ -0,0 +1,11 @@ +[BASIC] + +# Good variable names which should always be accepted, separated by a comma +good-names=ts,rt,i,j,k,ex,Run,_ + +# Allow different function names as long as consistent within a module (see +# README). +# See https://docs.pylint.org/en/1.6.0/options.html#multiple-naming-styles +function-rgx=(?:(?P[a-z_][a-z0-9_]{2,30})|(?P(_?([A-Z]|[a-z])*){2,30}))$ + +method-rgx=(?:(?P[a-z_][a-z0-9_]{2,30})|(?P(_?([A-Z]|[a-z])*){2,30}))$ -- cgit v1.2.3