-
Notifications
You must be signed in to change notification settings - Fork 0
/
.pre-commit-config.yaml
executable file
·82 lines (80 loc) · 3.21 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
repos:
# a set of useful Python-based pre-commit hooks
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.4.0
hooks:
# list of definitions and supported hooks: https://pre-commit.com/hooks.html
# - id: trailing-whitespace # removes any whitespace at the ends of lines
- id: check-toml # check toml syntax by loading all toml files
- id: check-yaml # check yaml syntax by loading all yaml files
- id: check-json # check-json syntax by loading all json files
- id: check-merge-conflict # check for files with merge conflict strings
args: ["--assume-in-merge"] # and run this check even when not explicitly in a merge
- id: check-added-large-files # check that no "large" files have been added
args: ["--maxkb=10240"] # where large means 10MB+, as in Hugging Face's git server
- id: debug-statements # check for python debug statements (import pdb, breakpoint, etc.)
- id: detect-private-key # checks for private keys (BEGIN X PRIVATE KEY, etc.)
- id: mixed-line-ending
args: ["--fix=lf"] # convert mixed line endings to unix style
# - id: end-of-file-fixer # makes sure files end in a newline and only a newline
- id: check-case-conflict # check for files with names that would conflict on a case-insensitive filesystem
- id: check-symlinks # check for symlinks
- id: check-ast # check for syntax errors in python files
- id: check-xml # check for syntax errors in xml files
- id: check-executables-have-shebangs # check that executables have shebangs
- id: sort-simple-yaml # sort yaml files
- id: requirements-txt-fixer # sort requirements.txt files
# - id: pretty-format-json # pretty format json files
- id: double-quote-string-fixer # convert single quotes to double quotes deal with strings in python files
- repo: https://github.com/PyCQA/autoflake
rev: v2.0.0
hooks:
- id: autoflake
args:
[
"--in-place",
"--expand-star-imports",
"--ignore-init-module-imports",
"--remove-all-unused-imports",
"--remove-unused-variables",
]
# - repo: https://github.com/pycqa/isort
# rev: 5.11.2
# hooks:
# - id: isort
# name: isort (python)
# black python autoformatting
- repo: https://github.com/psf/black
rev: 22.12.0
hooks:
- id: black
args:
[
"--line-length",
"150",
"--target-version",
"py37",
"--skip-string-normalization",
]
# additional configuration of black in pyproject.toml
# shellcheck-py for linting shell files
- repo: https://github.com/shellcheck-py/shellcheck-py
rev: v0.9.0.2
hooks:
- id: shellcheck
- repo: local
hooks:
- id: jupyter-nb-clear-output
name: jupyter-nb-clear-output
files: \.ipynb$
stages: [commit]
language: system
entry: jupyter nbconvert --ClearOutputPreprocessor.enabled=True --inplace
# - repo: local
# hooks:
# - id: pytest-check
# name: pytest-check
# entry: pytest
# language: system
# pass_filenames: false
# always_run: true