projectctl 0.2.0

CLI tool to manage project
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
repos:
  - repo: https://github.com/doublify/pre-commit-rust
    rev: v1.0
    hooks:
      - id: fmt
        stages: [commit]
      - id: cargo-check
        stages: [commit]
      - id: clippy
        stages: [commit]
        args: ['--tests', '--', '-D', 'warnings']
  - repo: https://github.com/alessandrojcm/commitlint-pre-commit-hook
    rev: v8.0.0
    hooks:
      - id: commitlint
        stages: [commit-msg]