123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
- 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.3.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',
- ]
- - repo: https://github.com/pycqa/autoflake
- rev: v1.4
- hooks:
- - id: autoflake
- args: [
- --remove-all-unused-imports,
- --ignore-init-module-imports,
- --in-place
- ]
- - repo: local
- hooks:
-
- - id: spotless
- name: spotless lint
- entry: ./mvnw spotless:check
- language: script
- pass_filenames: false
|