winapps/.pre-commit-config.yaml
Oskar Manhart 4d380f2e18 fix: skip clippy and rust-check for ci
pre-commit.ci has no network connection per design, so now pre-commit ci
only enforces styling
2023-07-27 11:54:02 +02:00

23 lines
533 B
YAML

ci:
skip: [clippy, cargo-check]
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.4.0
hooks:
- id: check-byte-order-marker
- id: check-case-conflict
- id: check-merge-conflict
- id: check-symlinks
- id: check-yaml
- id: check-toml
- id: end-of-file-fixer
- id: mixed-line-ending
- id: trailing-whitespace
- repo: https://github.com/winapps-org/pre-commit-rust
rev: v1.1
hooks:
- id: fmt
- id: clippy
- id: cargo-check