summaryrefslogtreecommitdiff
path: root/pyproject.toml
diff options
context:
space:
mode:
authorNejc Habjan <hab.nejc@gmail.com>2021-12-01 01:04:53 +0100
committerGitHub <noreply@github.com>2021-12-01 01:04:53 +0100
commit8d76826fa64460e504acc5924f859f8dbc246b42 (patch)
tree083fefada982c795e2415092794db429abb0c184 /pyproject.toml
parent5a1678f43184bd459132102cc13cf8426fe0449d (diff)
parent86ab04e54ea4175f10053decfad5086cda7aa024 (diff)
downloadgitlab-master.tar.gz
Merge pull request #1723 from python-gitlab/jlvillal/dead_mastermaster
Close-out `master` branch
Diffstat (limited to 'pyproject.toml')
-rw-r--r--pyproject.toml34
1 files changed, 0 insertions, 34 deletions
diff --git a/pyproject.toml b/pyproject.toml
deleted file mode 100644
index a924199..0000000
--- a/pyproject.toml
+++ /dev/null
@@ -1,34 +0,0 @@
-[tool.isort]
-profile = "black"
-multi_line_output = 3
-order_by_type = false
-
-[tool.mypy]
-disallow_incomplete_defs = true
-disallow_untyped_defs = true
-files = "."
-
-[[tool.mypy.overrides]] # Overrides for currently untyped modules
-module = [
- "docs.*",
- "docs.ext.*",
- "gitlab.v4.objects.*",
- "setup",
- "tests.functional.*",
- "tests.functional.api.*",
- "tests.unit.*",
- "tests.smoke.*"
-]
-ignore_errors = true
-
-[[tool.mypy.overrides]] # Overrides to negate above patterns
-module = [
- "gitlab.v4.objects.projects",
- "gitlab.v4.objects.users"
-]
-ignore_errors = false
-
-[tool.semantic_release]
-version_variable = "gitlab/__version__.py:__version__"
-commit_subject = "chore: release v{version}"
-commit_message = ""