Skip to content

Commit

Permalink
refactor(noUnusedTemplateLiteral): remove rule sources (#3052)
Browse files Browse the repository at this point in the history
  • Loading branch information
Conaclos authored Jun 3, 2024
1 parent 44b5c29 commit f194deb
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 9 deletions.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
use crate::JsRuleAction;
use biome_analyze::context::RuleContext;
use biome_analyze::{declare_rule, ActionCategory, Ast, FixKind, Rule, RuleDiagnostic, RuleSource};
use biome_analyze::{declare_rule, ActionCategory, Ast, FixKind, Rule, RuleDiagnostic};
use biome_console::markup;
use biome_js_factory::make;
use biome_js_syntax::{
Expand Down Expand Up @@ -41,7 +41,6 @@ declare_rule! {
version: "1.0.0",
name: "noUnusedTemplateLiteral",
language: "ts",
sources: &[RuleSource::EslintTypeScript("no-useless-template-literals")],
recommended: true,
fix_kind: FixKind::Unsafe,
}
Expand Down

0 comments on commit f194deb

Please sign in to comment.