Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add tool to "enforce" semantic line breaks #1485

Draft
wants to merge 2 commits into
base: master
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ book
book.toml

ci/date-check/target/
ci/semantic-line-breaks/target/

# Generated by check-in.sh
pulls.json
355 changes: 355 additions & 0 deletions ci/semantic-line-breaks/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

16 changes: 16 additions & 0 deletions ci/semantic-line-breaks/Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
[package]
name = "semantic-line-breaks"
version = "0.0.0"
edition = "2021"

[dependencies]
anyhow = "1"
ignore = "0.4"

[dependencies.regex]
version = "1"
features = ["pattern"]

[dependencies.clap]
version = "4"
features = ["derive"]
Loading