Skip to content

Commit

Permalink
feat: Bugreport command (#28)
Browse files Browse the repository at this point in the history
Add a bug report + completions command(not complete yet) so that new
users can easily submit bugs to us, and I wanted completions for bb
(super easy with clap)

---------

Co-authored-by: Gerald Pinder <[email protected]>
  • Loading branch information
bayou-brogrammer and gmpinder authored Jan 31, 2024
1 parent bdbbcea commit e069346
Show file tree
Hide file tree
Showing 22 changed files with 1,593 additions and 278 deletions.
5 changes: 4 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
/target
.sccache/
.vscode/
.vscode/

# Local testing for bb recipe files
/config/
4 changes: 4 additions & 0 deletions .helix/languages.toml
Original file line number Diff line number Diff line change
@@ -1,2 +1,6 @@
[language-server.rust-analyzer.config]
cargo.features = ["nightly"]

[language-server.rust-analyzer.config.check]
command = "clippy"
args = ["--no-deps"]
2 changes: 1 addition & 1 deletion .rusty-hook.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[hooks]
pre-commit = "cargo fmt && cargo test && cargo clippy -- -D warnings"
pre-commit = "cargo fmt --check && cargo test && cargo clippy -- -D warnings"

[logging]
verbose = true
Loading

0 comments on commit e069346

Please sign in to comment.