Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
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
2 changes: 2 additions & 0 deletions src/rules.rs
Original file line number Diff line number Diff line change
Expand Up @@ -99,6 +99,7 @@ pub mod no_setter_return;
pub mod no_shadow_restricted_names;
pub mod no_sparse_arrays;
pub mod no_sync_fn_in_async_fn;
pub mod no_thenable;
pub mod no_this_alias;
pub mod no_this_before_super;
pub mod no_throw_literal;
Expand Down Expand Up @@ -347,6 +348,7 @@ fn get_all_rules_raw() -> Vec<Box<dyn LintRule>> {
Box::new(no_shadow_restricted_names::NoShadowRestrictedNames),
Box::new(no_sparse_arrays::NoSparseArrays),
Box::new(no_sync_fn_in_async_fn::NoSyncFnInAsyncFn),
Box::new(no_thenable::NoThenable),
Box::new(no_this_alias::NoThisAlias),
Box::new(no_this_before_super::NoThisBeforeSuper),
Box::new(no_throw_literal::NoThrowLiteral),
Expand Down
Loading