diff options
-rw-r--r-- | README.md | 8 | ||||
-rw-r--r-- | setup.cfg | 26 |
2 files changed, 34 insertions, 0 deletions
diff --git a/README.md b/README.md new file mode 100644 index 0000000..39b48f8 --- /dev/null +++ b/README.md @@ -0,0 +1,8 @@ +# takahē + +A *very experimental* Fediverse server for microblogging/"toots". + +Goals: + +* Can run on serverless hosting +* Multiple account domains possible per server diff --git a/setup.cfg b/setup.cfg new file mode 100644 index 0000000..bd9cef4 --- /dev/null +++ b/setup.cfg @@ -0,0 +1,26 @@ +[flake8] +exclude = venv/*,tox/*,specs/* +ignore = E123,E128,E203,E266,E402,F405,E501,W503,E731,W601 +max-line-length = 119 + +[isort] +profile = black +multi_line_output = 3 + +[mypy] +warn_unused_ignores = True + +[mypy-django.*] +ignore_missing_imports = True + +[mypy-urlman.*] +ignore_missing_imports = True + +[mypy-crispy_forms.*] +ignore_missing_imports = True + +[mypy-cryptography.*] +ignore_missing_imports = True + +[mypy-*.migrations.*] +ignore_errors = True |