Skip to content

Commit

Permalink
Clippy changes (#42)
Browse files Browse the repository at this point in the history
* Clippy --fix to correct simple issues

* Added .vscode to gitignore

* removed .vscode/ files from repo

* Fixed clippy errors that couldn't be done with --fix.

* Restored Cargo.toml to it's original state

* Fixed clippy errors on entity_gernator.rs / generated/entities.rs

* Fixed clippy errors on tables_gernator.rs / generated/tables.rs

* Fixed clippy errors on headers_gernator.rs / generated/headers.rs

* Fixed clippy errors on object_gernator.rs / generated/objects.rs

* Fixed typo in function name. tabletyle => tablestyle

* Restored original .vscode/settings
  • Loading branch information
MrRobotMan authored Oct 13, 2023
1 parent f7ce4e4 commit eabe4e3
Show file tree
Hide file tree
Showing 29 changed files with 756 additions and 737 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
Cargo.lock
target/
.vscode/
32 changes: 0 additions & 32 deletions .vscode/tasks.json

This file was deleted.

2 changes: 1 addition & 1 deletion build/build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,6 @@ pub mod tables;
fn rerun_if_changed<S: Debug + ?Sized>(s: &S) {
let s = format!("{:?}", s)
.replace("\\\\", "/") // normalize directory separators
.replace("\"", ""); // ignore surrounding quotes
.replace('\"', ""); // ignore surrounding quotes
println!("cargo:rerun-if-changed={}", s);
}
Loading

0 comments on commit eabe4e3

Please sign in to comment.