mirror of
https://github.com/DOI-DO/j40-cejst-2.git
synced 2025-02-23 01:54:18 -08:00
39 lines
897 B
YAML
39 lines
897 B
YAML
repos:
|
|
- repo: https://github.com/pre-commit/pre-commit-hooks
|
|
rev: v4.3.0
|
|
hooks:
|
|
- id: end-of-file-fixer
|
|
- id: trailing-whitespace
|
|
- id: requirements-txt-fixer
|
|
|
|
- repo: https://github.com/lucasmbrown/mirrors-autoflake
|
|
rev: v1.3
|
|
hooks:
|
|
- id: autoflake
|
|
args:
|
|
[
|
|
"--in-place",
|
|
"--remove-all-unused-imports",
|
|
"--remove-unused-variable",
|
|
"--ignore-init-module-imports",
|
|
]
|
|
|
|
- repo: https://github.com/pycqa/isort
|
|
rev: 5.10.1
|
|
hooks:
|
|
- id: isort
|
|
name: isort (python)
|
|
args:
|
|
[
|
|
"--force-single-line-imports",
|
|
"--profile=black",
|
|
"--line-length=80",
|
|
"--src-path=.:data/data-pipeline"
|
|
]
|
|
|
|
- repo: https://github.com/ambv/black
|
|
rev: 22.8.0
|
|
hooks:
|
|
- id: black
|
|
language_version: python3.9
|
|
args: [--config=./data/data-pipeline/pyproject.toml]
|