Skip to content

Commit

Permalink
Merge pull request #45 from Pyhass/bugfix/move-credntials-fix-to-none…
Browse files Browse the repository at this point in the history
…-async-version

update hive auth to add credentials fix
  • Loading branch information
Khole authored Jun 22, 2022
2 parents 87ae87a + a8ddefd commit 604dd33
Show file tree
Hide file tree
Showing 28 changed files with 755 additions and 119 deletions.
30 changes: 21 additions & 9 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
@@ -1,18 +1,18 @@
repos:
- repo: https://github.com/asottile/pyupgrade
rev: v2.10.0
rev: v2.34.0
hooks:
- id: pyupgrade
args: [--py38-plus]
- repo: https://github.com/psf/black
rev: stable
rev: 22.3.0
hooks:
- id: black
args:
- --safe
- --quiet
- repo: https://github.com/codespell-project/codespell
rev: v2.0.0
rev: v2.1.0
hooks:
- id: codespell
args:
Expand All @@ -21,36 +21,36 @@ repos:
- --quiet-level=2
exclude_types: [csv, json]
- repo: https://gitlab.com/pycqa/flake8
rev: 3.8.4
rev: 3.9.2
hooks:
- id: flake8
additional_dependencies:
- flake8-docstrings==1.5.0
- pydocstyle==5.1.1
- repo: https://github.com/PyCQA/bandit
rev: 1.7.0
rev: 1.7.4
hooks:
- id: bandit
args:
- --quiet
- --format=custom
- --configfile=tests/bandit.yaml
- repo: https://github.com/PyCQA/isort
rev: 5.7.0
rev: 5.10.1
hooks:
- id: isort
args: ["--profile", "black"]
- repo: https://github.com/adrienverge/yamllint.git
rev: v1.26.0
rev: v1.26.3
hooks:
- id: yamllint
- repo: https://github.com/pre-commit/mirrors-prettier
rev: v2.2.1
rev: v2.7.1
hooks:
- id: prettier
stages: [manual]
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v3.4.0
rev: v4.3.0
hooks:
- id: check-executables-have-shebangs
stages: [manual]
Expand All @@ -59,3 +59,15 @@ repos:
- id: no-commit-to-branch
args:
- --branch=master
- repo: local
hooks:
- id: pylint
name: pylint
entry: pylint
language: system
types: [python]
args:
[
"-rn", # Only display messages
"-sn", # Don't display the score
]
Loading

0 comments on commit 604dd33

Please sign in to comment.