diff options
author | John L. Villalovos <john@sodarock.com> | 2021-12-07 15:11:55 -0800 |
---|---|---|
committer | John L. Villalovos <john@sodarock.com> | 2021-12-07 15:11:55 -0800 |
commit | b67a6ad1f81dce4670f9820750b411facc01a048 (patch) | |
tree | 1960a9f6d105e133ec99e28634df7f7167918484 | |
parent | 5f10b3b96d83033805757d72269ad0a771d797d4 (diff) | |
download | gitlab-b67a6ad1f81dce4670f9820750b411facc01a048.tar.gz |
chore: set pre-commit mypy args to empty list
https://github.com/pre-commit/mirrors-mypy/blob/master/.pre-commit-hooks.yaml
Sets some default args which seem to be interfering with things. Plus
we set all of our args in the `pyproject.toml` file.
-rw-r--r-- | .pre-commit-config.yaml | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 56420c7..66bf045 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -33,6 +33,7 @@ repos: rev: v0.910 hooks: - id: mypy + args: [] additional_dependencies: - types-PyYAML==6.0.1 - types-requests==2.26.1 |