24 lines
627 B
YAML
24 lines
627 B
YAML
|
# See https://pre-commit.com for more information
|
||
|
# See https://pre-commit.com/hooks.html for more hooks
|
||
|
repos:
|
||
|
- repo: https://github.com/pre-commit/pre-commit-hooks
|
||
|
rev: v4.4.0
|
||
|
hooks:
|
||
|
- id: trailing-whitespace
|
||
|
- id: end-of-file-fixer
|
||
|
- id: check-merge-conflict
|
||
|
- id: check-yaml
|
||
|
- id: check-added-large-files
|
||
|
args: ['--maxkb=1000']
|
||
|
exclude: "notebooks"
|
||
|
- id: check-yaml
|
||
|
exclude: "mkdocs.yml"
|
||
|
- repo: local
|
||
|
hooks:
|
||
|
- id: clean
|
||
|
name: clean
|
||
|
entry: make
|
||
|
args: ["clean"]
|
||
|
language: system
|
||
|
pass_filenames: false
|