Newer
Older
minerva / .pre-commit-config.yaml
@minerva minerva on 13 Jul 718 bytes Initial commit
repos:
  - repo: local
    hooks:
      - id: meta-lint-ci
        name: Running Meta/lint-ci.sh to ensure changes will pass linting on CI
        entry: bash Meta/lint-ci.sh
        args: [ --no-ports ]
        stages: [ pre-commit ]
        language: system

      - id: meta-lint-ports
        name: Running Meta/lint-ports.py to ensure changes will pass linting on CI
        entry: Meta/lint-ports.py
        pass_filenames: false
        files: ^Ports/
        stages: [ pre-commit ]
        language: system

      - id: meta-lint-commit
        name: Lint commit message to ensure it will pass the commit linting on CI
        entry: Meta/lint-commit.sh
        stages: [ commit-msg ]
        language: system