diff --git a/.gitignore b/.gitignore index fb78ca3..f0f4919 100644 --- a/.gitignore +++ b/.gitignore @@ -104,5 +104,6 @@ venv.bak/ .mypy_cache/ # vim tmp +*~ *.swp *.swo diff --git a/.pylintrc b/.pylintrc new file mode 100644 index 0000000..f4d4c09 --- /dev/null +++ b/.pylintrc @@ -0,0 +1,24 @@ +[MASTER] + +[MESSAGES CONTROL] +disable = + ungrouped-imports, + bad-continuation, + missing-docstring, + no-self-use, + superfluous-parens, + invalid-name, + line-too-long, + too-many-arguments, + too-many-branches, + too-many-statements, + too-many-locals, + too-few-public-methods, + wrong-import-order, + duplicate-code + +# allow indented whitespace (as required by interpreter): +no-space-check=empty-line + +# allow non-snake-case identifiers: +good-names=n,i diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..d691d9b --- /dev/null +++ b/Makefile @@ -0,0 +1,21 @@ +SHELL = /bin/bash +PYTHON = python3 +PIP = pip3 + +define HELP +cat <