Skip to content
Merged
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
6 changes: 5 additions & 1 deletion crates/oxc_linter/src/rules/typescript/no_var_requires.rs
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,11 @@ pub struct NoVarRequires;
declare_oxc_lint!(
/// ### What it does
///
/// Disallow `require` statements except in import statements
/// Disallow `require` statements except in import statements.
///
/// **NOTE**: This rule is intentionally missing the `allow` option from the original typescript-eslint rule.
/// This rule is deprecated in the upstream plugin and the `typescript/no-require-imports` rule should be
/// used instead.
///
/// ### Why is this bad?
///
Expand Down
Loading