Skip to content

Commit

Permalink
Add Clippy allow directive to generated schema files
Browse files Browse the repository at this point in the history
This change adds `#![allow(clippy::all)]` to suppress Clippy lints in files generated by the FlatBuffers compiler. These files are auto-generated, so manual linting is unnecessary and could lead to noise during development.
  • Loading branch information
arkavo-com committed Jan 3, 2025
1 parent e140cc1 commit 5e8765f
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/bin/schemas/entity_generated.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
#![allow(clippy::all)]
// automatically generated by the FlatBuffers compiler, do not modify

// @generated
Expand Down
1 change: 1 addition & 0 deletions src/bin/schemas/event_generated.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
#![allow(clippy::all)]
// automatically generated by the FlatBuffers compiler, do not modify

// @generated
Expand Down
1 change: 1 addition & 0 deletions src/bin/schemas/metadata_generated.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
#![allow(clippy::all)]
// automatically generated by the FlatBuffers compiler, do not modify

extern crate flatbuffers;
Expand Down

0 comments on commit 5e8765f

Please sign in to comment.