From a0ae0c27af4c8e7ca19efd4497d90be6d87de6f3 Mon Sep 17 00:00:00 2001 From: Alexander Piskun <13381981+bigcat88@users.noreply.github.com> Date: Thu, 24 Oct 2024 21:30:15 +0300 Subject: [PATCH] removed `mypy` checks Signed-off-by: Alexander Piskun --- .pre-commit-config.yaml | 7 ------- pyproject.toml | 8 -------- 2 files changed, 15 deletions(-) diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index a4bb989f..aa023cb5 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -45,13 +45,6 @@ repos: hooks: - id: ruff -- repo: https://github.com/pre-commit/mirrors-mypy - rev: v1.12.1 - hooks: - - id: mypy - files: nc_py_api/ - additional_dependencies: [pytest] - - repo: local hooks: - id: pylint diff --git a/pyproject.toml b/pyproject.toml index 850c5006..5e34eb32 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -248,11 +248,3 @@ exclude_lines = [ "DeprecationWarning", "DEPRECATED", ] - -[tool.mypy] -ignore_missing_imports = false -warn_unreachable = true -warn_no_return = true -strict_optional = true -check_untyped_defs = true -show_error_codes = true