Skip to content
This repository has been archived by the owner on Mar 24, 2023. It is now read-only.

Disable mypy, pylint and pydocstyle for now #65

Merged
merged 2 commits into from
Jan 24, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/pre_commit_checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
strategy:
fail-fast: false
matrix:
hook: [ "black", "robotidy", "vulture", "eradicate", "flake8", "pylint", "mypy", "rstcheck" ]
hook: [ "black", "robotidy", "vulture", "eradicate", "flake8", "rstcheck" ]
# include an extra pre-commit config file (specify a hook to run or keep it empty for running al hooks)
include:
- hook: ""
Expand Down
30 changes: 15 additions & 15 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,21 +28,21 @@ repos:
rev: v2.6
hooks:
- id: vulture
- repo: https://github.com/pre-commit/mirrors-mypy
rev: v0.991
hooks: # pydantic and fastapi ship with mypy stubs
- id: mypy
additional_dependencies: ['types-PyYAML', 'types-requests', 'pydantic']
exclude: "bits|tests"
- repo: https://github.com/PyCQA/pylint
rev: v2.15.2
hooks:
- id: pylint
exclude: "bits|tests"
- repo: https://github.com/PyCQA/pydocstyle
rev: 6.1.1
hooks:
- id: pydocstyle
# - repo: https://github.com/pre-commit/mirrors-mypy
# rev: v0.991
# hooks: # pydantic and fastapi ship with mypy stubs
# - id: mypy
# additional_dependencies: ['types-PyYAML', 'types-requests', 'pydantic']
# exclude: "bits|tests"
# - repo: https://github.com/PyCQA/pylint
# rev: v2.15.2
# hooks:
# - id: pylint
# exclude: "bits|tests"
# - repo: https://github.com/PyCQA/pydocstyle
# rev: 6.1.1
# hooks:
# - id: pydocstyle
- repo: https://github.com/PyCQA/flake8
rev: 5.0.4
hooks:
Expand Down