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

feat: Bugreport command #28

Merged
merged 24 commits into from
Jan 31, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
0003d82
chore: fix simple error in workflow
bayou-brogrammer Jan 28, 2024
3742d78
add build.rs file for env info
bayou-brogrammer Jan 28, 2024
6877be2
add bug report command
bayou-brogrammer Jan 28, 2024
a970e9a
null out completions command
bayou-brogrammer Jan 28, 2024
df33912
Merge branch 'main' into bugreport-command
gmpinder Jan 28, 2024
714477e
Remove pedantic to allow shadow_rs to work
gmpinder Jan 28, 2024
54d617f
Add build.rs in +common target
gmpinder Jan 28, 2024
0634657
cleanup bug_report and add completions command
bayou-brogrammer Jan 28, 2024
6fb1fbf
Merge branch 'main' into bugreport-command
gmpinder Jan 28, 2024
2a4de86
fix: cleanup command
bayou-brogrammer Jan 28, 2024
fb6483f
chore: remove unused package
bayou-brogrammer Jan 28, 2024
3e654b7
Merge branch 'main' into bugreport-command
gmpinder Jan 28, 2024
e2bab54
feat: cleanup report code a bit
bayou-brogrammer Jan 29, 2024
91e497d
Merge branch 'main' into bugreport-command
bayou-brogrammer Jan 29, 2024
9468ea9
fix: fix git commit hash not showing
bayou-brogrammer Jan 29, 2024
16d4e1c
---- trying shit out. possible delete everything after this to fix br…
bayou-brogrammer Jan 29, 2024
34751e9
fix: recipe parsing
bayou-brogrammer Jan 29, 2024
0dbe089
Removed allow for unused imports and cleaned up the code
gmpinder Jan 29, 2024
9ee0dbe
Removed allow for unused imports and cleaned up the code
gmpinder Jan 29, 2024
0583dcd
fix: cleanup
bayou-brogrammer Jan 30, 2024
f6d513d
Use serde to print the entire file in the template
gmpinder Jan 30, 2024
9b892fc
Make get_modules recursive
gmpinder Jan 30, 2024
5c09dee
Handle error case for failed module parsing
gmpinder Jan 30, 2024
bdfaaeb
chore: remove powershell support
Jan 31, 2024
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
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
Loading