|
@@ -23,13 +23,14 @@ default_language_version:
|
|
|
# force all python hooks to run python3
|
|
|
python: python3
|
|
|
repos:
|
|
|
+ # Python API Hooks
|
|
|
- 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
|
|
|
+ rev: 22.3.0
|
|
|
hooks:
|
|
|
- id: black
|
|
|
- repo: https://github.com/pycqa/flake8
|
|
@@ -37,20 +38,28 @@ repos:
|
|
|
hooks:
|
|
|
- id: flake8
|
|
|
additional_dependencies: [
|
|
|
- 'flake8-docstrings>=1.6',
|
|
|
- 'flake8-black>=0.2',
|
|
|
+ 'flake8-docstrings>=1.6',
|
|
|
+ 'flake8-black>=0.2',
|
|
|
]
|
|
|
# pre-commit run in the root, so we have to point out the full path of configuration
|
|
|
args: [
|
|
|
- --config,
|
|
|
- dolphinscheduler-python/pydolphinscheduler/.flake8
|
|
|
+ --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
|
|
|
+ --remove-all-unused-imports,
|
|
|
+ --ignore-init-module-imports,
|
|
|
+ --in-place
|
|
|
]
|
|
|
+ - repo: local
|
|
|
+ hooks:
|
|
|
+ # Spotless Hooks
|
|
|
+ - id: spotless
|
|
|
+ name: spotless lint
|
|
|
+ entry: ./mvnw spotless:apply
|
|
|
+ language: script
|
|
|
+ pass_filenames: false
|