textblocks 0.1.1

A library for working with text blocks.
Documentation
# See https://pre-commit.com for more information
# See https://pre-commit.com/hooks.html for more hooks
exclude: .vscode,target
repos:
  - repo: https://github.com/pre-commit/pre-commit-hooks
    rev: v4.4.0
    hooks:
      - id: check-added-large-files
      - id: check-executables-have-shebangs
      - id: check-shebang-scripts-are-executable
      - id: check-json
      - id: check-merge-conflict
      - id: check-symlinks
      - id: detect-private-key
      - id: check-toml
      - id: check-yaml
      - id: trailing-whitespace
      - id: end-of-file-fixer
      - id: mixed-line-ending
  - repo: https://github.com/doublify/pre-commit-rust
    rev: v1.0
    hooks:
      - id: cargo-check
      - id: clippy
        # args:
          # - --all-targets
          # - --all-features
          # - -- -W clippy::pedantic
      - id: fmt