Disable black static check as it seems to have some dependency issues.

This commit is contained in:
Relintai 2023-06-25 13:32:06 +02:00
parent 52144e7f36
commit c717ac001a

View File

@ -1,14 +1,14 @@
repos:
- repo: https://github.com/ambv/black
rev: 19.3b0
hooks:
- id: black
types: [file] # override `types: [python]`
files: (\.py$|^SConstruct$|/SConscript$)
exclude: (^tests/_lib_vendors|^(tests|examples)/lib) # Ignore 3rd party stuff
args:
- "--line-length=100"
language_version: python3
#- repo: https://github.com/ambv/black
# rev: 19.3b0
# hooks:
# - id: black
# types: [file] # override `types: [python]`
# files: (\.py$|^SConstruct$|/SConscript$)
# exclude: (^tests/_lib_vendors|^(tests|examples)/lib) # Ignore 3rd party stuff
# args:
# - "--line-length=100"
# language_version: python3
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v2.2.3
hooks: