Skip to content

Commit

Permalink
Add rule source
Browse files Browse the repository at this point in the history
  • Loading branch information
arendjr committed Jan 23, 2025
1 parent 1e41fd0 commit d59fb9a
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion crates/biome_js_analyze/src/lint/nursery/no_import_cycles.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
use std::collections::BTreeSet;

use biome_analyze::{context::RuleContext, declare_lint_rule, Rule, RuleDiagnostic};
use biome_analyze::{context::RuleContext, declare_lint_rule, Rule, RuleDiagnostic, RuleSource};
use biome_console::markup;
use biome_dependency_graph::ModuleImports;
use biome_js_syntax::inner_string_text;
Expand Down Expand Up @@ -79,6 +79,9 @@ declare_lint_rule! {
version: "next",
name: "noImportCycles",
language: "js",
sources: &[
RuleSource::EslintImport("no-cycle"),
],
recommended: false,
}
}
Expand Down

0 comments on commit d59fb9a

Please sign in to comment.