1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- default_stages: [commit, push]
- default_language_version:
-
- python: python3
- repos:
- - repo: https://github.com/pycqa/isort
- rev: 5.10.1
- hooks:
- - id: isort
- name: isort (python)
- - repo: https://github.com/psf/black
- rev: 22.1.0
- hooks:
- - id: black
- - repo: https://github.com/pycqa/flake8
- rev: 4.0.1
- hooks:
- - id: flake8
- additional_dependencies: [
- 'flake8-docstrings>=1.6',
- 'flake8-black>=0.2',
- ]
-
- args: [
- --config,
- dolphinscheduler-python/pydolphinscheduler/.flake8
- ]
- - repo: https://github.com/pycqa/autoflake
- rev: v1.4
- hooks:
- - id: autoflake
- args: [
- --remove-all-unused-imports,
- --ignore-init-module-imports,
- --in-place
- ]
|