lineguard 0.1.2

A fast and reliable file linter that ensures proper line endings and clean formatting
Documentation
[[bin]]
name = "lineguard"
path = "src/main.rs"

[dependencies.anyhow]
version = "1.0"

[dependencies.clap]
features = ["derive", "color", "suggestions"]
version = "4.5"

[dependencies.colored]
version = "3.0"

[dependencies.glob]
version = "0.3"

[dependencies.indicatif]
version = "0.18"

[dependencies.rayon]
version = "1.10"

[dependencies.serde]
features = ["derive"]
version = "1.0"

[dependencies.serde_json]
version = "1.0"

[dependencies.thiserror]
version = "2.0"

[dependencies.toml]
version = "0.9"

[dev-dependencies.assert_cmd]
version = "2.0"

[dev-dependencies.predicates]
version = "3.1"

[dev-dependencies.tempfile]
version = "3.10"

[lib]
name = "lineguard"
path = "src/lib.rs"

[package]
authors = ["hydai <z54981220@gmail.com>"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["command-line-utilities", "development-tools"]
description = "A fast and reliable file linter that ensures proper line endings and clean formatting"
edition = "2024"
keywords = ["lint", "formatter", "cli", "line-endings", "whitespace"]
license = "Apache-2.0"
name = "lineguard"
readme = "README.md"
repository = "https://github.com/hydai/lineguard"
version = "0.1.2"

[profile.release]
codegen-units = 1
lto = true
opt-level = 3

[[test]]
name = "check_options_tests"
path = "tests/check_options_tests.rs"

[[test]]
name = "checker_tests"
path = "tests/checker_tests.rs"

[[test]]
name = "cli_tests"
path = "tests/cli_tests.rs"

[[test]]
name = "config_file_tests"
path = "tests/config_file_tests.rs"

[[test]]
name = "cpp_files_tests"
path = "tests/cpp_files_tests.rs"

[[test]]
name = "discovery_tests"
path = "tests/discovery_tests.rs"

[[test]]
name = "extensions_tests"
path = "tests/extensions_tests.rs"

[[test]]
name = "filtering_tests"
path = "tests/filtering_tests.rs"

[[test]]
name = "fix_tests"
path = "tests/fix_tests.rs"

[[test]]
name = "git_range_tests"
path = "tests/git_range_tests.rs"

[[test]]
name = "human_reporter_tests"
path = "tests/human_reporter_tests.rs"

[[test]]
name = "ignore_pattern_tests"
path = "tests/ignore_pattern_tests.rs"

[[test]]
name = "integration_tests"
path = "tests/integration_tests.rs"

[[test]]
name = "large_file_tests"
path = "tests/large_file_tests.rs"

[[test]]
name = "permission_tests"
path = "tests/permission_tests.rs"

[[test]]
name = "reporter_tests"
path = "tests/reporter_tests.rs"

[[test]]
name = "stdin_tests"
path = "tests/stdin_tests.rs"