Skip to content

Commit

Permalink
chore(linter): add a rule source of noUnknownProperty (#3252)
Browse files Browse the repository at this point in the history
  • Loading branch information
togami2864 committed Jun 21, 2024
1 parent c372484 commit cc65fe8
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
2 changes: 2 additions & 0 deletions crates/biome_configuration/src/linter/rules.rs

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,4 +1,4 @@
use biome_analyze::{context::RuleContext, declare_rule, Ast, Rule, RuleDiagnostic};
use biome_analyze::{context::RuleContext, declare_rule, Ast, Rule, RuleDiagnostic, RuleSource};
use biome_console::markup;
use biome_css_syntax::CssGenericProperty;
use biome_rowan::{AstNode, TextRange};
Expand Down Expand Up @@ -57,7 +57,8 @@ declare_rule! {
version: "1.8.0",
name: "noUnknownProperty",
language: "css",
recommended: false,
recommended: true,
sources: &[RuleSource::Stylelint("property-no-unknown")],
}
}

Expand Down

0 comments on commit cc65fe8

Please sign in to comment.