summaryrefslogtreecommitdiff
path: root/.pylintrc
diff options
context:
space:
mode:
authorMatthew Sotoudeh <matthewsot@outlook.com>2020-11-10 14:06:35 -0800
committerMatthew Sotoudeh <matthewsot@outlook.com>2020-11-10 14:06:35 -0800
commit904094281b062aff3445ca41fec57e4cfd0f563d (patch)
treeed49271ab1ff8448a433921533159f6a8e450c8b /.pylintrc
parentdb99b3af36fa4687c734e1c74d83157d2f10c9ed (diff)
Initial code release
Diffstat (limited to '.pylintrc')
-rw-r--r--.pylintrc11
1 files changed, 11 insertions, 0 deletions
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<snake>[a-z_][a-z0-9_]{2,30})|(?P<camel>(_?([A-Z]|[a-z])*){2,30}))$
+
+method-rgx=(?:(?P<snake>[a-z_][a-z0-9_]{2,30})|(?P<camel>(_?([A-Z]|[a-z])*){2,30}))$
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback