-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
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
1 parent
bdbbcea
commit e069346
Showing
22 changed files
with
1,593 additions
and
278 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
Oops, something went wrong.