Skip to content

Commit

Permalink
rule: fix typo in mod name (#409)
Browse files Browse the repository at this point in the history
bad_drop_database -> ban_drop_database
  • Loading branch information
sbdchd authored Jan 26, 2025
1 parent 08dc70e commit ea24ec5
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
File renamed without changes.
4 changes: 2 additions & 2 deletions linter/src/rules/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ pub mod adding_not_null_field;
pub use adding_not_null_field::*;
pub mod adding_primary_key_constraint;
pub use adding_primary_key_constraint::*;
pub mod bad_drop_database;
pub use bad_drop_database::*;
pub mod ban_drop_database;
pub use ban_drop_database::*;
pub mod changing_column_type;
pub use changing_column_type::*;
pub mod constraint_missing_not_valid;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
source: linter/src/rules/bad_drop_database.rs
source: linter/src/rules/ban_drop_database.rs
expression: lint_sql(sql)
---
[
Expand Down

0 comments on commit ea24ec5

Please sign in to comment.