generated from ashleve/lightning-hydra-template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
.pre-commit-config.yaml
38 lines (33 loc) · 1.03 KB
/
.pre-commit-config.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
default_language_version:
python: python3.8
repos:
# Pre-commit-hooks
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v3.2.0
hooks:
# list of supported hooks: https://pre-commit.com/hooks.html
- id: trailing-whitespace
- id: debug-statements
- id: detect-private-key
- id: check-yaml
- id: check-added-large-files
# Black (code formatting)
- repo: https://github.com/psf/black
rev: 20.8b1
hooks:
- id: black
# args: [--force-exclude, src/train.py]
# Isort (import sorting)
- repo: https://github.com/PyCQA/isort
rev: 5.7.0
hooks:
- id: isort
# profiles: https://pycqa.github.io/isort/docs/configuration/profiles/
# other flags: https://pycqa.github.io/isort/docs/configuration/options/
args: [--profile, black, --skip, src/train.py, --skip, run.py, --filter-files]
# files: "src/.*"
# MyPy (static type checking)
# - repo: https://github.com/pre-commit/mirrors-mypy
# rev: v0.790
# hooks:
# - id: mypy