diff --git a/.flake8 b/.github/linters/.flake8 similarity index 100% rename from .flake8 rename to .github/linters/.flake8 diff --git a/.markdown-link-check.json b/.github/linters/.markdown-link-check.json similarity index 100% rename from .markdown-link-check.json rename to .github/linters/.markdown-link-check.json diff --git a/.github/linters/.mypy.ini b/.github/linters/.mypy.ini new file mode 100644 index 000000000..7be7ce157 --- /dev/null +++ b/.github/linters/.mypy.ini @@ -0,0 +1,4 @@ +[mypy] +disallow_incomplete_defs = true +disallow_untyped_defs = true +ignore_missing_imports = true diff --git a/.pylintrc b/.github/linters/.pylintrc similarity index 100% rename from .pylintrc rename to .github/linters/.pylintrc diff --git a/pyproject.toml b/pyproject.toml index 6444e3460..5fea393dd 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -39,8 +39,3 @@ mkdocs-section-index = "^0.3.5" [build-system] requires = ["poetry-core>=1.0.0"] build-backend = "poetry.core.masonry.api" - -[tool.mypy] -disallow_incomplete_defs = true -disallow_untyped_defs = true -ignore_missing_imports = true