mirror of
https://github.com/anoma/juvix.git
synced 2024-11-09 22:11:27 +03:00
64 lines
1.7 KiB
YAML
64 lines
1.7 KiB
YAML
# $ pip install pre-commit
|
|
# $ pre-commit install
|
|
# $ pre-commit run --all-files
|
|
# 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: check-yaml
|
|
- id: check-added-large-files
|
|
- id: check-case-conflict
|
|
- id: check-merge-conflict
|
|
- id: check-toml
|
|
- id: detect-private-key
|
|
- id: mixed-line-ending
|
|
exclude: tests/
|
|
- id: trailing-whitespace
|
|
exclude: tests/
|
|
- id: end-of-file-fixer
|
|
exclude: tests/|assets/
|
|
|
|
- repo: https://github.com/jumanjihouse/pre-commit-hooks
|
|
rev: 3.0.0
|
|
hooks:
|
|
- id: forbid-binary
|
|
name: forbid binary files
|
|
exclude: assets/
|
|
|
|
- repo: https://github.com/pre-commit/mirrors-prettier
|
|
rev: v3.0.0-alpha.6
|
|
hooks:
|
|
- id: prettier
|
|
types_or: [css, javascript, markdown, yaml, toml]
|
|
exclude: examples/|tests/|assets/
|
|
|
|
- repo: https://github.com/pre-commit/mirrors-clang-format
|
|
rev: v15.0.7
|
|
hooks:
|
|
- id: clang-format
|
|
files: runtime/.+\.(c|h)$
|
|
|
|
- repo: local
|
|
hooks:
|
|
- id: format-juvix-files
|
|
name: format Juvix examples
|
|
entry: make format-juvix-files
|
|
language: system
|
|
verbose: true
|
|
pass_filenames: false
|
|
|
|
- id: typecheck-juvix-examples
|
|
name: typecheck Juvix examples
|
|
entry: make typecheck-juvix-examples
|
|
language: system
|
|
verbose: true
|
|
pass_filenames: false
|
|
|
|
- id: ormolu
|
|
name: format Haskell code with ormolu
|
|
entry: make -s ormolu
|
|
language: system
|
|
pass_filenames: false
|