togl 0.2.3

A CLI tool for toggling code comments across multiple languages
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
pre-commit:
  parallel: true
  commands:
    fmt:
      run: cargo fmt --all -- --check
    clippy:
      run: cargo clippy --all-targets -- -D warnings
    actionlint:
      glob: ".github/workflows/*.{yml,yaml}"
      run: actionlint {staged_files}
    toml-lint:
      glob: "*.toml"
      run: taplo fmt --check {staged_files}

pre-push:
  commands:
    test:
      run: cargo test