The analyzer is a generic crate aimed to implement a visitor-like infrastructure, where it's possible to inspect a piece of AST and emit diagnostics or actions based on a static check.
The analyzer allows implementors to create three different types of rules:
- Syntax: This rule checks the syntax according to the language specification and emits error diagnostics accordingly.
- Lint: This rule performs static analysis of the source code to detect invalid or error-prone patterns, and emits diagnostics along with proposed fixes.
- Assist: This rule detects refactoring opportunities and emits code action signals.
- Analyzer
- Table of Contents
- Understanding Biome Linter
- Creating a Rule
- Guidelines
- Mark a rule as a work in progress
- Creating and Implementing the Rule
- Coding Tips for Rules
- Testing the Rule
- Documenting the Rule
- Code generation
- Committing your work
- Sidenote: Deprecating a rule
Biome linter is meant to work across languages, which means that a rule can work within multiple languages. That's why it's important to choose a good name for your rule. If the name of the rule is very generic, it means that it could potentially be implemented for multiple languages. However, if a rule is meant for a specific language, you should choose a name that is more specific.
Understanding this is important because it might have repercussions on how rule options will be applied to different languages.
When creating or updating a rule, you need to be aware that there's a lot of generated code inside our toolchain. Our CI ensures that this code is not out of sync and fails otherwise. See the code generation section for more details.
To create a new rule, you have to create and update several files. Because it is a bit tedious, Biome provides an easy way to create and test your rule using Just. Just is not part of the rust toolchain, you have to install it with a package manager.
Biome follows a naming convention according to what the rule does:
-
Forbid <a concept>
no<Concept>When a rule's sole intention is to forbid a single concept - such as disallowing the use of
debuggerstatements - the rule should be named using thenoprefix.[!NOTE] For example, the rule to disallow the use of
debuggerstatements is namednoDebugger. -
Mandate <a concept>
use<Concept>When a rule's sole intention is to mandate a single concept - such as forcing the use of correct values for a certain attribute or the use of identifiers following a naming convention - the rule should be named using the
useprefix.[!NOTE] For example, the rule to mandating the use valid values for the HTML
langattribute is nameduseValidLang.
We also try to ensure consistency in the naming of rules. Please feel free to refer to existing rules for inspiration when naming new ones. Here is a non-exhaustive list of common names:
-
use<Framework>...If a rule overwhelmingly applies to a specific framework, it should be named using the
useornoprefix followed by the framework name, eg.noVueReservedProps -
noConstant<Concept>These rules report a computation that is always evaluated to the same value. For example
noConstantMathMinMaxClampreport combination ofminandmaxthat always evaluate to a minimum or maximum. -
noDuplicate<Concept>These rules report a duplication that override a previous occurrence and is likely an error. For example,
noDuplicateObjectKeysreports a literal object containing two properties with the same name. -
noEmpty<Concept>These rules report empty codes, which could be the result of an oversight or could be improved by including a comment. For example
noEmptyBlockStatementsreports empty block statements. -
noExcessive<Concept>These rules report codes that exceed some limits that are generally configurable. For example
noExcessiveNestedTestSuitesreports code with nested test suites that exceed a configured threshold. -
noRedundant<Concept>These rules report codes that are redundant. For example
noRedundantUseStrictreport"use strict"directive that are made redundant because of a parent"use strict"directive. -
noUnused<Concept>These rules report entities that are unused. It is usually the result of uncompleted refactorings. For example
noUnusedVariablesreports variables that are not used. -
noUseless<Concept>These rules report codes which are unnecessary and could be removed or simplified without altering the program's behavior. For example,
noUselessConstructorreports constructors that are equivalent to the default constructor and can then be removed. -
noInvalid<Concept>anduseValid<Concept>These rules report errors which are the result of mistyping and led to runtime errors. Usually, we use
noInvalid<Concept>for runtime errors anduseValid<Concept>for code that always evaluate to a constant. For example,noInvalidConstructorSuperreports errors in the use ofsuper()in class constructors.useValidTypeofreports uses oftypeofthat always evaluates tofalse. -
noUnknown<Concept>These rules report errors which are the result of mistyping and led to runtime errors or ignored code. This naming convention is used for CSS rules. For example,
noUnknownUnitreports CSS units that are not standardized. -
noMisleading<Concept>These rules report codes that can be valid, but likely to mislead readers. For example,
noMisleadingCharacterClassreports character classes in non-Unicode regular expressions that use multiple code points. -
noRestricted<Concept>These rules report entities that the user wants to ban. For example,
noRestrictedGlobalsallows to black lists some global variable names. -
noUndeclared<Concept>These rules report an entity that is not defined. For example,
noUndeclaredVariablesreports variables that are not defined. -
noUnsafe<Concept>These rules report codes that can lead at runtime failures. For example,
noUnsafeOptionalChainingreports uses of optional chains in contexts where theundefinedvalue is not allowed. -
useConsistent<Concept>These rules ensure consistency across the entire codebase. For example,
useConsistentArrayTypeensures that developers use eitherArray<T>orT[]. -
useShorthand<Concept>These rules report syntax that can be rewritten using equivalent compact syntax. For example
useShorthandAssignpromotes the use of combined assignment and operations. Note that sometimes it is better to chooseuseConsistent<Concept>in order to offer choices to users. You should chooseuseShorthand<Concept>if there is no doubt that the style is widely accepted as better.
A rule should be informative to the user, and give as much explanation as possible.
When writing a rule, you must adhere to the following pillars:
-
Explain to the user what the error is. Generally, this is the message of the diagnostic. Example: "Foo is missing from this Bar."
-
Explain to the user why the error is triggered. It should be motivation for the user to fix the error. Generally, this is implemented with an additional output node. Example: "Without Foo, the Bar will not work as expected, because of this and that."
-
Tell the user what they should do. Generally, this is implemented using a code action. If a code action is not applicable a note should tell the user what they should do to fix the error. Example: "Add a Foo by doing this and that."
New rules must be placed inside the nursery group. This group is meant as an incubation space, exempt from semantic versioning. Once a rule is stable, it's promoted to a group that fits it. This is done in a minor/major release.
Tip
As a developer, you aren't forced to make a rule perfect in one PR. Instead, you are encouraged to lay out a plan and to split the work into multiple PRs.
If you aren't familiar with Biome's APIs, this is an option that you have. If you decide to use this option, you should make sure to describe your plan in an issue.
Sometimes nursery rules aren't completed yet – missing use cases, code actions, etc. – and you might want to communicate that to your users.
You can add issue_number to the rule macro, and Biome will:
- Add a footnote to the diagnostic of the rule with a link to the issue, e.g.
https://github.com/biomejs/biome/issues/1111 - Add a note on the website, with a link to the issue.
declare_lint_rule! {
/// Docs
pub(crate) NoVar {
version: "next",
name: "noVar",
language: "js",
issue_number: Some("1111"),
}
}Let's say we want to create a new lint rule called useMyRuleName, follow these steps:
-
Generate the code for your rule by running this command (Hint: Replace
useMyRuleNamewith your custom name as recommended by the naming convention):# Example: Create a new JS lint rule just new-js-lintrule useMyRuleName # Or, to create a new lint/assist rule for JSON/CSS/GraphQL/..: # $ just new-css-lintrule useMyRuleName # $ just new-graphql-lintrule useMyRuleName # $ just new-js-assistrule useMyRuleName # $ just new-json-assistrule useMyRuleName
The script
just new-js-lintrulescript will generate a bunch of files for the JavaScript language inside thebiome_js_analyzecrate. Among the other files, you'll find a file calleduse_my_rule_name.rsinside thebiome_js_analyze/lib/src/lint/nurseryfolder. You'll implement your rule in this file. -
Let's have a look at the generated code in
use_my_rule_name.rs:... impl Rule for UseMyRuleName { type Query = Ast<JsIdentifierBinding>; type State = (); type Signals = Option<Self::State>; type Options = (); fn run(ctx: &RuleContext<Self>) -> Self::Signals { ... } fn diagnostic(ctx: &RuleContext<Self>, _state: &Self::State) -> Option<RuleDiagnostic> { ... } }
We can observe a few details from this snippet:
-
The
Optionstype can be used to define additional options for your rule:type Options = ();
Use
()if your rule does not have additional options. -
The
Querytype defines the entities for which your rule'sUseMyRuleName::runfunction will be invoked:type Query = Ast<JsIdentifierBinding>;
→ The
Ast<>query type, for example, allows you to query the AST/CST of a program for nodes of a specific type.→ For more advanced use cases, it is also possible to define custom query types.
-
The
runfunction will be invoked for each match ofQuery. It should return eitherSometo report a diagnostic for that match, orNone.→ It is also possible to report multiple diagnostics and/or code actions for a single
Querymatch. See Multiple Signals for instructions.type Signals = Option<Self::State>; fn run(ctx: &RuleContext<Self>) -> Self::Signals { let matched_node = ctx.query(); ... }
-
The
diagnosticfunction will be invoked for each signal returned byrun, and turns these signals intoRuleDiagnosticinstances that define the message(s) reported to the user.fn diagnostic(ctx: &RuleContext<Self>, state: &Self::State) -> Option<RuleDiagnostic> { ... }
-
The
Statetype can be used to pass additional information for each signal reported by therunfunction to thediagnosticandactionfunctions. Use()if you don't need to pass additional information:type State = ();
-
-
Optional: Use
Optionsto define custom options for your rule. We'll leave it as()for now. -
Use
Queryto define the node type that you want to analyze. We'll leave it asAst<JsIdentifierBinding>for our example:type Query = Ast<JsIdentifierBinding>;
-
Implement the
runfunction. This function is called every time the analyzer finds a match for the query specified by the rule, and may return zero or more "signals":fn run(ctx: &RuleContext<Self>) -> Self::Signals { let binding = ctx.query(); if binding.name_token().ok()?.text() == "prohibited_identifier" { Some(()) } else { None } }
-
Implement the
diagnosticfunction to define what the user will see.Follow the guidelines & pillars when writing the messages. Please also keep Biome's technical principles in mind when writing those messages and implementing your diagnostic rule.
fn diagnostic(ctx: &RuleContext<Self>, _state: &Self::State) -> Option<RuleDiagnostic> { let node = ctx.query(); Some( RuleDiagnostic::new( rule_category!(), node.range(), markup! { "Use of a prohibited identifier name" }, ) .note(markup! { "This note will give you more information." }), ) }
-
Optional: Implement the
actionfunction if your rule is able to provide a code action:impl Rule for UseAwesomeTricks { fn action(ctx: &RuleContext<Self>, _state: &Self::State) -> Option<JsRuleAction> { let mut mutation = ctx.root().mutation(); Some(JsRuleAction::new( ctx.action_category(ctx.category(), ctx.group()), ctx.metadata().applicability(), markup! { "<MESSAGE>" }.to_owned(), mutation, )) } }
It may return zero or one code action. Rules can return a code action that can be safe or unsafe. If a rule returns a code action, you must add
fix_kindto the macrodeclare_lint_rule.use biome_analyze::FixKind; declare_lint_rule!{ fix_kind: FixKind::Safe, }
When returning a code action, you must pass the
categoryand theapplicabilityfields.categorymust bectx.action_category(ctx.category(), ctx.group()).applicabilityis derived from the metadatafix_kind. In other words, the code transformation should always result in code that doesn't change the behavior of the logic. In the case ofnoVar, it is not always safe to turnvartoconstorlet.
Don't forget to format your code with just f and lint with just l.
That's it! Now, let's test the rule.
Below, there are many tips and guidelines on how to create a lint rule using Biome infrastructure.
This macro is used to declare an analyzer rule type, and implement the [RuleMeta] trait for it.
The macro itself expects the following syntax:
use biome_analyze::declare_lint_rule;
declare_lint_rule! {
/// Documentation
pub(crate) ExampleRule {
version: "next",
name: "myRuleName",
language: "js",
recommended: false,
}
}Tip
The version field indicates what Biome version the rule was released in. The version field must be next. This allows us flexibility for what version the rule will actually be released in.
If a lint rule is ported from an existing rule from other ecosystems (ESLint, ESLint plugins, Clippy, etc.), you can add a new metadata to the macro called source. Its value is &'static [RuleSource], which is a reference to a slice of RuleSource elements, each representing a different source.
If you're implementing a lint rule that matches the behavior of the ESLint rule no-debugger, you'll use the variant ::ESLint and pass the name of the rule:
use biome_analyze::{declare_lint_rule, RuleSource};
declare_lint_rule! {
/// Documentation
pub(crate) ExampleRule {
version: "next",
name: "myRuleName",
language: "js",
recommended: false,
sources: &[RuleSource::Eslint("no-debugger").same()],
}
}If the rule you're implementing has a different behavior or option, you can use .inspired() instead of .same().
use biome_analyze::{declare_lint_rule, RuleSource};
declare_lint_rule! {
/// Documentation
pub(crate) ExampleRule {
version: "next",
name: "myRuleName",
language: "js",
recommended: false,
sources: &[RuleSource::Eslint("no-debugger").inspired()],
}
}Declaring a rule using declare_lint_rule! will cause a new rule_category!
macro to be declared in the surrounding module. This macro can be used to
refer to the corresponding diagnostic category for this lint rule, if it
has one. Using this macro instead of getting the category for a diagnostic
by dynamically parsing its string name has the advantage of statically
injecting the category at compile time and checking that it is correctly
registered to the biome_diagnostics library.
declare_lint_rule! {
/// Documentation
pub(crate) ExampleRule {
version: "next",
name: "myRuleName",
language: "js",
recommended: false,
}
}
impl Rule for ExampleRule {
fn diagnostic(ctx: &RuleContext<Self>, _state: &Self::State) -> Option<RuleDiagnostic> {
Some(RuleDiagnostic::new(
rule_category!(),
ctx.query().text_trimmed_range(),
"message",
))
}
}Every diagnostic emitted by a rule has a severity set to error, warn, or info.
The declare_lint_rule! macro accepts a severity field, of type biome_diagnostics::Severity.
By default, rules without severity will start with Severity::Information.
Here are some guidelines to choose a severity:
- Rules with the
errorseverity report hard errors, likely erroneous code, dangerous code, or accessibility issues. - Rules with the
warnseverity report possibly erroneous code, or code that could be cleaner if rewritten in another way. - Rules with the
infoseverity report stylistic suggestions.
If you want to change the default severity, you need to assign it:
+ use biome_diagnostics::Severity;
declare_lint_rule! {
/// Documentation
pub(crate) ExampleRule {
version: "next",
name: "myRuleName",
language: "js",
recommended: false,
+ severity: Severity::Warning,
}
}Note
This section is relevant to Biome maintainers when they want to move (promote) a rule to a group that is not nursery.
We try to maintain consistency in the default severity level and group membership of the rules. For legacy reasons, we have some rules that don't follow these constraints.
-
correctness,security, anda11yrules must have a severity set toerror.If
erroris too strict for a rule, then it should certainly be in another group (for examplesuspiciousinstead ofcorrectness). -
stylerules must have a severity set toinfoorwarn. If in doubt, chooseinfo. -
complexityrules must have a severity set towarnorinfo. If in doubt, chooseinfo. -
suspiciousrules must have a severity set towarnorerror. If in doubt, choosewarn. -
performancerules must have a severity set towarn. -
Actions must have a severity set to
info.
Domains are very specific ways to collect rules that belong to the same "concept". Domains are a way for users to opt-in/opt-out rules that belong to the same domain.
Some examples of domains: testing, specific framework, specific runtime, specific library. A rule can belong to multiple domains.
+ use biome_analyze::RuleDomain;
declare_lint_rule! {
/// Documentation
pub(crate) ExampleRule {
version: "next",
name: "myRuleName",
language: "js",
recommended: true,
+ domains: &[RuleDomain::Test],
}
}Rule domains can unlock various perks in the Biome analyzer:
- A domain can define a number of
package.jsondependencies. When a user has one or more of these dependencies, Biome will automatically enable the recommended rules that belong to the domain. To add/update/remove dependencies to a domain, check the functionRuleDomain::manifest_dependencies. - A domain can define a number of "globals". These globals will be used by other rules, and improve the UX of them. To add/update/remove globals to a domain, check the function
RuleDomain::globals.
When a rule is recommended and has domains, the rule is enabled only when the user enables the relative domains via "recommended" or "all".
Instead, if the rule is recommended but doesn't have domains, the rule is always enabled by default.
Note
Before adding a new domain, please consult with the maintainers of the project.
Some rules may allow customization using per-rule options in biome.json.
Note
We try to keep rule options to a minimum and only provide them when needed. Before adding an option, it's worth a discussion.
If provided, options should follow our technical philosophy.
Rule options must be placed inside the crate biome_rule_options. If you run the command just gen-analyzer, the codegen
should have created a new file inside the crate that has the name of your rule. For example, if the rule name is useThisConvention
you should see a file use_this_convention.rs inside biome_rule_options/lib. Inside this file you'll see a struct called UseThisConventionOptions.
Use this struct to add the options.
Let's assume that the rule we want to implement supports the following options:
behavior: a string among"A","B", and"C";threshold: an integer between 0 and 255;behaviorExceptions: an array of strings.
We would like to set the options in the biome.json configuration file:
{
"linter": {
"rules": {
"enabled": true,
"nursery": {
"myRule": {
"level": "on",
"options": {
"behavior": "A",
"threshold": 30,
"behaviorExceptions": ["f"],
}
}
}
}
}
}The first step is to create the Rust data representation of the rule's options.
use biome_deserialize_macros::{Deserializable, Merge};
#[derive(Clone, Debug, Default, Deserializable)]
pub struct MyRuleOptions {
behavior: Option<Behavior>,
threshold: Option<u8>,
behavior_exceptions: Option<Box<[Box<str>]>>,
}
#[derive(Clone, Debug, Default, Deserializable, Merge)]
pub enum Behavior {
#[default]
A,
B,
C,
}
impl biome_deserialize::Merge for MyRuleOptions {
fn merge_with(&mut self, other: Self) {
// `self` corresponds to the (shared) extended configuration.
// `other` is the user configuration.
self.behavior.merge_with(other.behavior);
self.threshold.merge_with(other.threshold);
if let Some(behavior_exceptions) = other.behavior_exceptions {
self.behavior_exceptions = Some(behavior_exceptions);
}
}
}Note that we use a boxed slice Box<[Box<str>]> instead of Vec<String>.
This allows saving memory: boxed slices and boxed str use 2 words instead of three words.
To allow deserializing instances of the types MyRuleOptions and Behavior,
they have to implement the Deserializable trait from the biome_deserialize crate.
This is what the Deserializable keyword in the #[derive] statements above did.
It's a so-called derive macros, which generates the implementation for the Deserializable trait
for you.
The rule's options type have also to implement biome_deserialize::Merge.
This allows merging the rule's options coming from a shared extended configuration with
the rule's options set by a user configuration.
In the following example, the shared configuration set behavior and behaviorExceptions.
// shared.jsonc
{
"linter": {
"rules": {
"nursery": {
"myRule": {
"level": "on",
"options": {
"behavior": "A",
"behaviorExceptions": ["e"],
}
}
}
}
}
}The shared configuration is extended by the following user configuration that re-set
threshold and behaviorExceptions.
// biome.jsonc
{
"extends": ["./shared.jsonc"],
"linter": {
"enabled": true,
"rules": {
"nursery": {
"myRule": {
"level": "on",
"options": {
"threshold": 30,
"behaviorExceptions": ["f"],
}
}
}
}
}
}The Implementation of the biome_deserialize_macros::Merge trait defines how these options
are merged into the final one.
The provided implementation of biome_deserialize_macros::Merge for MyRuleOptions allows
obtaining the following result when merging the previous configuration:
// Merged result
{
"linter": {
"enabled": true,
"rules": {
"nursery": {
"myRule": {
"level": "on",
"options": {
"behavior": "A",
"threshold": 30,
"behaviorExceptions": ["f"],
}
}
}
}
}
}You can also use the biome_deserialize_macros::Merge derive macro to implement the trait.
This is what we did for Behavior.
We didn't use the biome_deserialize_macros::Merge derive macro for MyRuleOptions
because the implementation could extend behaviorExceptions instead of resetting it.
In other words, if we use the derive macro, the obtained merged behaviorExceptions
could be ["e", "f"] instead of ["f"].
When merging rules options, you usually want to resetting the options instead of combining them.
Note that every option is also wrapped in an Option<_>.
This allows you to properly merge options by tracking the ones that are set and the ones that are unset.
With these types in place, you can set the associated type Options of the rule:
use biome_rule_options::use_my_rule::UseMyRuleOptions;
impl Rule for UseMyRule {
type Query = Semantic<JsCallExpression>;
type State = Fix;
type Signals = Vec<Self::State>;
type Options = UseMyRuleOptions;
}A rule can retrieve the options that apply to the location of the currently matched node with:
let options = ctx.options();Modifications of the configuration via e.g. extends
and overrides (in biome.json)
that apply only to a subset of files are automatically taken into account,
and do not need to be handled by the rule itself.
Warning
Although we use serdes attribute syntax, we do not actually use the serde crate for (de)serialization of biome.json.
We instead provide a serde-inspired implementation in biome_deserialize and biome_deserialize_macros that differs in some aspects, like being fault-tolerant.
The compiler should warn you that MyRuleOptions does not implement some required types.
We currently require implementing serde's Deserialize/Serialize traits.
Also, we use other serde macros to adjust the JSON configuration:
rename_all = "camelCase": it renames all fields in camel-case, so they are in line with the naming style of thebiome.json.deny_unknown_fields: it raises an error if the configuration contains extraneous fields.default: it uses theDefaultvalue when the field is missing frombiome.json. This macro makes the field optional.
Because we use schemars to generate a JSON schema for biome.json, our options type must support the schemars::JsonSchema trait as well.
You can simply use the derive macros provided by serde, biome_deserialize and schemars to generate the necessary implementations automatically:
// crates/biome_rule_options/lib/use_my_rule.rs
use biome_deserialize_macros::Deserializable;
use serde::{Deserialize, Serialize};
#[derive(Debug, Default, Clone, Serialize, Deserialize, Deserializable)]
#[cfg_attr(feature = "schema", derive(schemars::JsonSchema))]
#[serde(rename_all = "camelCase", deny_unknown_fields, default)]
pub struct UseMyRuleOptions {
#[serde(skip_serializing_if = "Option::<_>::is_none")]
main_behavior: Option<Behavior>,
#[serde(skip_serializing_if = "Option::<_>::is_none")]
extra_behaviors: Option<Box<[Behavior]>>,
}
#[derive(Debug, Default, Clone)]
#[cfg_attr(feature = "schema", derive(JsonSchema))]
pub enum Behavior {
#[default]
A,
B,
C,
}If you are working on a port of an ESLint rule, and you are adding an option from that source rule, you may want to provide a custom migrator for that rule, to help users migrate their configuration from ESLint to Biome.
This is usually implemented in crates/biome_cli/src/execute/migrate/eslint_to_biome.rs, in the migrate_eslint_rule function. The conversion of the options comes from a impl From<eslint_eslint::RuleConf> for biome_rule_options::... implementation.
Example:
eslint_eslint::Rule::JestConsistentTestIt(conf) => {
if migrate_eslint_any_rule(rules, &name, conf.severity(), opts, results) {
let severity = conf.severity();
let group = rules.nursery.get_or_insert_with(Default::default);
if let SeverityOrGroup::Group(group) = group {
let rule_options =
if let eslint_eslint::RuleConf::Option(_, rule_options) = conf {
rule_options.into()
} else {
eslint_jest::ConsistentTestItOptions::default().into()
};
group.use_consistent_test_it =
Some(biome_config::RuleFixConfiguration::WithOptions(
biome_config::RuleWithFixOptions {
level: severity.into(),
fix: None,
options: rule_options,
},
));
}
results.add(&name, RuleMigrationResult::Migrated);
}
}These custom migrators can be tested by adding a snapshot test to crates/biome_cli/tests/specs/migrate_eslint/.
As with every other user-facing aspect of a rule, the effect that options have on a rule's operation should be both documented and tested, as explained in more detail in the section Documenting the rule.
When navigating the nodes and tokens of certain nodes, you will notice straight away that the majority of those methods will return a Result (SyntaxResult).
Generally, you will end up navigating the CST inside the run function, and this function will usually return an Option or a Vec.
-
If the
runfunction returns anOption, you're encouraged to transform theResultinto anOptionand use the try operator?. This will make your coding way easier:fn run() -> Self::Signals { let prev_val = js_object_member.value().ok()?; }
-
If the
runfunction returns aVec, you're encouraged to use thelet elsetrick to reduce code branching:fn run() -> Self::Signals { let Ok(prev_val) = js_object_member.value() else { return vec![] }; }
There are times when you might need to query multiple nodes at once. Instead of querying the root of the CST, you can use the macro declare_node_union! to "join" multiple nodes into an enum:
use biome_rowan::{declare_node_union, AstNode};
use biome_js_syntax::{AnyJsFunction, JsMethodObjectMember, JsMethodClassMember};
declare_node_union! {
pub AnyFunctionLike = AnyJsFunction | JsMethodObjectMember | JsMethodClassMember
}When creating a new node like this, we internally prefix them with Any* and postfix them with *Like. This is our internal naming convention.
The type AnyFunctionLike implements the trait AstNode, which means that it implements all methods such as syntax, children, etc.
There are times when a rule requires quite advanced knowledge of the behavior of language, such as control flow or where bindings are declared. Biome provides "services" to provide this type of information, so it can be calculated once and reused across multiple rules.
The semantic model provides information about the references of a binding (declaration) within a program, indicating if it is written (e.g., const a = 4), read (e.g., const b = a, where a is read), or exported.
We have a for loop that creates an index i, and we need to identify where this index is used inside the body of the loop
for (let i = 0; i < array.length; i++) {
array[i] = i
}To get started we need to create a new rule using the semantic type type Query = Semantic<JsForStatement>;
We can now use the ctx.model() to get information about bindings in the for loop.
impl Rule for ForLoopCountReferences {
type Query = Semantic<JsForStatement>;
type State = ();
type Signals = Option<Self::State>;
type Options = ForLoopCountReferencesOptions;
fn run(ctx: &RuleContext<Self>) -> Self::Signals {
let node = ctx.query();
// The model holds all information about the semantic, like scopes and declarations
let model = ctx.model();
// Here we are extracting the `let i = 0;` declaration in for loop
let initializer = node.initializer()?;
let declarators = initializer.as_js_variable_declaration()?.declarators();
let initializer = declarators.first()?.ok()?;
let initializer_id = initializer.id().ok()?;
// Now we have the binding of this declaration
let binding = initializer_id
.as_any_js_binding()?
.as_js_identifier_binding()?;
// How many times this variable appears in the code
let count = binding.all_references(model).count();
// Get all read references
let readonly_references = binding.all_reads(model);
// Get all write references
let write_references = binding.all_writes(model);
}
}In some rare cases, a rule may require multiple services to be used together. In these cases, you don't need to pull in these services in the rule's Query. The rule context provides a get_service method to retrieve services by their type.
However, you need to take into consideration that some services are created during a "second phase", for example SemanticModel and ControlFlowGraph services are created during this phase. If you pull these services when using the Ast query, those services won't be available. This means that you must use at least a query that runs during the second phase. The Semantic query, for example, runs during the second phase.
let is_root_service = ctx
.get_service::<IsRoot>()
.expect("IsRoot service not found.");Where IsRoot is the name of the service you want to retrieve. The name of the service is the name of the Rust type that is stored when calling .insert_service().
Refer to the src/lib.rs file of the crate, and look at the .insert_service() function, and deduce the name of the service from there. Using an incorrect name will result in a panic error at runtime.
Some rules require you to find all possible cases upfront in run function.
To achieve that you can change Signals type from Option<Self::State> to an iterable data structure such as Vec<Self::State> or Box<[Self::State]>.
This will call the diagnostic/action function for every item of the data structure.
We prefer to use Box<[_]> over Vec<_> because it takes less memory.
You can easily convert a Vec<_> into a Box<[_]> using the Vec::into_boxed_slice() method.
Taking previous example and modifying it a bit we can apply diagnostic for each item easily.
impl Rule for ForLoopCountReferences {
type Query = Semantic<JsForStatement>;
type State = TextRange;
type Signals = Option<Box<[Self::State]>>;
type Options = ForLoopCountReferencesOptions;
fn run(ctx: &RuleContext<Self>) -> Self::Signals {
let node = ctx.query();
let model = ctx.model();
...
// Get all write references
let write_references = binding.all_writes(model);
// Find all places where variable is being written to and get node ranges
let write_ranges = write_references.into_iter().map(|write| {
let syntax = write.syntax();
let range = syntax.text_range();
Some(range)
}).collect::<Vec<_>>();
write_ranges.into_boxed_slice()
}
fn diagnostic(_: &RuleContext<Self>, range: &Self::State) -> Option<RuleDiagnostic> {
// This will be called for each vector item
}
}A rule can provide one or more code actions. Code actions provide the final user with the option to fix or change their code.
In a lint rule, for example, it signals an opportunity for the user to fix the diagnostic emitted by the rule.
First, you have to add a new metadata called fix_kind that specifies whether the fixes emitted by the rule are considered "safe" or "unsafe".
use biome_analyze::{declare_lint_rule, FixKind};
declare_lint_rule! {
/// Documentation
pub(crate) ExampleRule {
version: "next",
name: "myRuleName",
language: "js",
recommended: false,
fix_kind: FixKind::Safe,
}
}Then, you'll have to implement the action function of the Rule trait and return a JsRuleAction.
JsRuleAction needs, among other things, a mutation type, which you will use to store all additions, deletions and replacements that will be executed when the user applies the action:
impl Rule for ExampleRule {
fn action(ctx: &RuleContext<Self>, _state: &Self::State) -> Option<JsRuleAction> {
let mut mutation = ctx.root().begin();
Some(JsRuleAction::new(
ctx.action_category(ctx.category(), ctx.group()),
ctx.metadata().applicability(),
markup! { "Remove the '"{name.text_trimmed()}"' element." }.to_owned(),
mutation,
))
}
}The ctx.metadata().applicability() function will compute the Applicability type from the fix_kind value you provided at the beginning inside the declare_lint_rule! macro.
Some lint rules may need to deeply inspect the child nodes of a query match
before deciding on whether they should emit a signal or not. These rules can be
inefficient to implement using the query system, as they will lead to redundant
traversal passes being executed over the same syntax tree. To make this more
efficient, you can implement a custom Queryable type and associated
Visitor to emit it as part of the analyzer's main traversal pass. As an
example, here's how this could be done to implement the useYield rule:
// First, create a visitor struct that holds a stack of function syntax nodes and booleans
#[derive(Default)]
struct MissingYieldVisitor {
stack: Vec<(AnyFunctionLike, bool)>,
}
// Implement the `Visitor` trait for this struct
impl Visitor for MissingYieldVisitor {
type Language = JsLanguage;
fn visit(
&mut self,
event: &WalkEvent<SyntaxNode<Self::Language>>,
mut ctx: VisitorContext<Self::Language>,
) {
match event {
WalkEvent::Enter(node) => {
// When the visitor enters a function node, push a new entry on the stack
if let Some(node) = AnyFunctionLike::cast_ref(node) {
self.stack.push((node, false));
}
if let Some((_, has_yield)) = self.stack.last_mut() {
// When the visitor enters a `yield` expression, set the
// `has_yield` flag for the top entry on the stack to `true`
if JsYieldExpression::can_cast(node.kind()) {
*has_yield = true;
}
}
}
WalkEvent::Leave(node) => {
// When the visitor exits a function, if it matches the node of the top-most
// entry of the stack and the `has_yield` flag is `false`, emit a query match
if let Some(exit_node) = AnyFunctionLike::cast_ref(node) {
if let Some((enter_node, has_yield)) = self.stack.pop() {
debug_assert_eq!(enter_node, exit_node);
if !has_yield {
ctx.match_query(MissingYield(enter_node));
}
}
}
}
}
}
}
// Declare a query match struct type containing a JavaScript function node
pub(crate) struct MissingYield(AnyFunctionLike);
impl QueryMatch for MissingYield {
fn text_range(&self) -> TextRange {
self.0.range()
}
}
// Implement the `Queryable` trait for this type
impl Queryable for MissingYield {
// `Input` is the type that `ctx.match_query()` is called with in the visitor
type Input = Self;
type Language = JsLanguage;
// `Output` if the type that `ctx.query()` will return in the rule
type Output = AnyFunctionLike;
type Services = ();
fn build_visitor(
analyzer: &mut impl AddVisitor<Self::Language>,
_: &<Self::Language as Language>::Root,
) {
// Register our custom visitor to run in the `Syntax` phase
analyzer.add_visitor(Phases::Syntax, MissingYieldVisitor::default);
}
// Extract the output object from the input type
fn unwrap_match(services: &ServiceBag, query: &Self::Input) -> Self::Output {
query.0.clone()
}
}
impl Rule for UseYield {
// Declare the custom `MissingYield` queryable as the rule's query
type Query = MissingYield;
fn run(ctx: &RuleContext<Self>) -> Self::Signals {
// Read the function's root node from the queryable output
let query: &AnyFunctionLike = ctx.query();
// ...
}
}There are some common mistakes that can lead to bugs or false positives in lint rules, or things that reviewers will always ask for. These tips should help you avoid them and write more robust rules.
Some rules aim to ban certain functions or variables (e.g. noConsoleLog bans console.log). A common mistake make this check without considering if the variable is global or not. This can lead to false positives if the variable is declared in a local scope.
console.log(); // <-- This should be reported because `console` is a global variable
const console = { log() {} };
console.log(); // <-- This should not be reported because `console` is redeclared as a local variableTo avoid this, you should consult the semantic model to check if the variable is global or not.
Lots of rules require checking a string. It's tempting to call to_string() on something to get an owned string, but this always results in a heap allocation.
Most of the time, you actually want to compare against a &str, or a TokenText. TokenText is most useful for those cases where you actually do need an owned value.
Inherently, syntax trees are quite deeply nested. Biome's syntax data structures make heavy use of the Result and Option types to represent the absence of a value. It may be tempting to use unwrap() or expect() to avoid the Result and Option types, but this is not recommended because those panic. Sometimes, it's not convenient to use the ? operator. Whatever the case may be, you might end up with something like this:
if let Ok(object_member_name) = property_object_member.name() {
if let Some(key_name) = object_member_name.name() {
if key_name.text().trim() == "data" {
if let Ok(value) = property_object_member.value() {
match value {
...Rust provides comprehensive helper functions to avoid things like this, such as map, filter, and and_then. Which allows you to write code that is more concise and easier to read.
property_object_member
.name()
.ok()
.and_then(|n| n.name())
.filter(|ident| ident.text().trim() == "data")
.and_then(|_| property_object_member.value().ok())
.and_then(|value| match value {
...A swift way to test your rule is to go inside the biome_js_analyze/tests/quick_test.rs file (this will change based on where you're implementing the rule) and modify the quick_test function.
Usually this test is ignored, so remove/comment the #[ignore] macro and change the let SOURCE variable to whatever source code you need to test. Then update the rule filter, and add your rule:
let rule_filter = RuleFilter::Rule("nursery", "useAwesomeTrick");Now from your terminal, switch to the crates/biome_js_analyze folder and run the test using cargo:
cd crates/biome_js_analyze
cargo t quick_testRemember that if you added dbg! macros inside your source code, you'll have to use --show-output:
cargo t quick_test -- --show-outputThe test is designed to show diagnostics and code actions if the rule correctly emits the signal. If nothing is shown, your logic didn't emit any signal.
Tip
Most of the testing of the rules themselves is done by snapshot tests using the insta library.
A rule is run against a set of known inputs, and its diagnostic output (in text form) is compared against a known-good example output. Check our main contribution document for additional information on how to deal with the snapshot tests.
Inside the tests/specs/ folder, rules are divided by group and rule name.
The test infrastructure is rigid around the association of the pair "group/rule name", which means that if your test cases are placed inside the wrong group, you won't see any diagnostics.
Since each new rule will start from nursery, that's where we'll start.
If you used just new-js-lintrule, a folder with the name of the rule should already exist there.
Otherwise, create a folder called myRuleName/, and then create one or more files for the different cases you want to test.
Note
A common pattern is to create files prefixed by invalid or valid.
- The files prefixed by
invalidcontain code that is reported by the rule. - The files prefixed by
validcontain code that is not reported by the rule.
Files ending with the extension .jsonc are handled differently.
These files should contain an array of strings where each string is a code snippet.
For instance, for the rule noVar, the file invalidScript.jsonc contains:
Note that the code in those .jsonc files is interpreted in a script environment.
This means that you cannot use syntax that belongs to ECMAScript modules such as import and export.
Run the command:
just test-lintrule myRuleNameAnd if you've done everything correctly, you should see some snapshots emitted with diagnostics and code actions.
Check our main contribution document to know how to deal with the snapshot tests.
The documentation needs to adhere to the following rules:
- The first paragraph of the documentation is used as a brief description of the rule, and it must be written in one single line. Breaking the paragraph into multiple lines will break the table contents of the rules overview page.
- The next paragraphs can be used to further document the rule with as many details as you see fit.
- The documentation must have a
## Examplesheader, followed by two headers:### Invalidand### Valid.### Invalidmust go first because we need to show when the rule is triggered. - Rule options if any, must be documented in the
## Optionssection, after the## Examplesheader. - Each option must have its own h3 header e.g.
### ignoreSiblings, a description of what the option does, its default value, a options block, and a code block where those options are applied. Depending on the option, you might want to use theexpect_diagnosticdirective, or not. The final Markdown will look like this:## Options The following options are available ### `ignoreSiblings` This option will ignore the sibling of the spread operator. Default: `false` ```json,options { "options": { "ignoreSiblings": true } } ``` ```js,expect_diagnostic,use_options const { ...sibling, id } = object; ```
- Update the
languagefield in thedeclare_lint_rule!macro to the language the rule primarily applies to.- If your rule applies to any JavaScript, you can leave it as
js. - If your rule only makes sense in a specific JavaScript dialect, you should set it to
jsx,ts, ortsx, whichever is most appropriate.
- If your rule applies to any JavaScript, you can leave it as
Tip
The build process will automatically check each (properly marked) code block in a rule's documentation comment to ensure that:
- The
### Validexamples contain valid, parseable code, and the rule does not report any diagnostics for them. - Each
### Invalidexample reports exactly one diagnostic. The output of the diagnostic will also be shown in the generated documentation for that rule at biomejs.dev.
To make this work, all code blocks must adhere to a few rules, as listed below:
-
Language
Each code block must have a language defined (so that the correct syntax highlighting and analyzer options are applied).
-
Valid/Invalid snippets
When adding invalid snippets in the
### Invalidsection, you must use theexpect_diagnosticcode block property. We use this property to generate a diagnostic and attach it to the snippet. A given snippet must emit only ONE diagnostic.When adding valid snippets in the
### Validsection, you can use one single snippet for all different valid cases. -
Ignoring snippets
You can use the code block property
ignoreto tell the code generation script to not generate a diagnostic for an invalid snippet and exclude it from the automatic validation described above.Please use this sparingly and prefer automatically validated snippets, as this avoids out-of-date documentation when the implementation is changed.
-
Hiding lines
Although usually not necessary, it is possible to prevent code lines from being shown in the output by prefixing them with
#.You should usually prefer to show a concise but complete sample snippet instead.
-
Multi-file snippets
For rules that analyze relationships between multiple files (e.g., import cycles, cross-file dependencies), you can use the
file=<path>property to create an in-memory file system for testing.This is also useful to trigger type inference even for examples that only consist of individual files.
Files are organized by documentation section (Markdown headings), where all files in a section are collected before any tests run. This ensures each test has access to the complete file system regardless of definition order.
/// ### Invalid /// /// ```js,expect_diagnostic,file=foo.js /// import { bar } from "./bar.js"; /// export function foo() { /// return bar(); /// } /// ``` /// /// ```js,expect_diagnostic,file=bar.js /// import { foo } from "./foo.js"; /// export function bar() { /// return foo(); /// } /// ```
-
Callout blocks (Asides)
You can use Starlight asides (also known as "admonitions" or "callouts") to highlight important notes, warnings, or tips in your rule documentation.
Example usage:
/// :::caution /// The rule doesn't support dependencies installed inside a monorepo. /// :::
Supported types:
:::note,:::tip,:::caution,:::danger. -
Ordering of code block properties
In addition to the language, a code block can be tagged with a few additional properties like
expect_diagnostic,options,full_options,use_options,ignoreand/orfile=<path>.The parser does not care about the order, but for consistency, modifiers should always be ordered as follows:
/// ```<language>[,expect_diagnostic][,(options|full_options|use_options)][,ignore][,file=path] /// ```
e.g.
/// ```tsx,expect_diagnostic,use_options,ignore,file=foobar.tsx /// ```
All code blocks are interpreted as sample code that should be analyzed using the rule's default options by default, unless the codeblock is marked with options, full_options or use_options.
Codeblocks can therefore be of one of three types:
-
Valid/Invalid example snippets using the default settings are marked as described above:
/// ### Valid /// /// ```js /// var some_valid_example = true; /// ```
/// ### Invalid /// /// ```ts,expect_diagnostic /// const some_invalid_example: UndeclaredType = false; /// ```
-
Valid configuration option snippets that contain only the settings for the rule itself should be written in
jsonorjsonctogether with the code block propertyoptions:/// ### Valid /// /// ```json,options /// { /// "options": { /// "behavior": "A", /// "threshold": 30, /// "behaviorExceptions": ["f"] /// } /// } /// ```
Although usually not needed, you can show syntactically or semantically invalid configuration option snippets by adding
expect_diagnosticin addition tooptions. As for normal snippets, a given snippet must emit only ONE diagnostic:/// ### Invalid /// /// ```json,expect_diagnostic,options /// { /// "options": { /// "behavior": "invalid-value" /// } /// } /// ```
-
Usually, the shown configuration option snippets only need to change rule-specific options.
If you need to show off a full
biome.jsonconfiguration instead, you can usefull_optionsinstead ofoptionsto change the parsing mode./// ```jsonc,full_options /// { /// "linter": { /// "rules": { /// "style": { /// "useNamingConvention": "warn" /// } /// } /// }, /// // ... /// "overrides": [ /// { /// // Override useNamingConvention for external module typing declarations /// "include": ["typings/*.d.ts"], /// "linter": { /// "rules": { /// "style": { /// "useNamingConvention": "off" /// } /// } /// } /// } /// ] /// } /// ```
Although probably never needed, it is possible to define an expected-to-be-invalid full configuration snippet as follows:
/// ```jsonc,expect_diagnostic,full_options /// { /// "linter": { /// // ... /// } /// } /// ```
-
A valid configuration option example can be followed by one or more valid/invalid code snippets that use these options, possibly with interleaving text. Those code snippets have to be marked with
use_options:/// ### Valid/Invalid /// /// A configuration could look like this: /// /// ```json,options /// { /// "options": { /// "your-custom-option": "..." /// } /// } /// ``` /// /// And a usage looks like this: /// /// ```js,use_options /// var some_valid_example = true; /// ``` /// /// And an "invalid" usage that triggers the rule looks like this: /// /// ```js,expect_diagnostic,use_options /// var this_should_trigger_the_rule = true; /// ```
Here's an example of how the final documentation could look like:
use biome_analyze::declare_lint_rule;
declare_lint_rule! {
/// Disallow the use of `var`.
///
/// _ES2015_ allows you to create variables with block scope instead of function scope
/// using the `let` and `const` keywords.
/// Block scope is common in many other programming languages and helps to avoid mistakes.
///
/// Source: https://eslint.org/docs/latest/rules/no-var
///
/// ## Examples
///
/// ### Invalid
///
/// ```js,expect_diagnostic
/// var foo = 1;
/// ```
///
/// ```js,expect_diagnostic
/// var bar = 1;
/// ```
///
/// ### Valid
///
/// ```js
/// const foo = 1;
/// let bar = 1;
///```
pub(crate) NoVar {
version: "next",
name: "noVar",
language: "js",
recommended: false,
}
}For simplicity, use just to run all the commands with:
just gen-analyzerOnce the rule is implemented, tested and documented, you are ready to open a pull request!
Stage and commit your changes:
> git add -A
> git commit -m 'feat(biome_js_analyze): myRuleName'Then push your changes to your forked repository and open a pull request.
There are occasions when a rule must be deprecated to avoid breaking changes.
There are different reasons for deprecation, so the declare_lint_rule! macro enables you to specify the reason via an additional deprecated: field:
use biome_analyze::declare_lint_rule;
declare_lint_rule! {
/// Disallow the use of `var`.
///
/// ## Examples
///
/// ### Invalid
///
/// ```js,expect_diagnostic
/// var a, b;
/// ```
pub(crate) NoVar {
version: "1.0.0",
name: "noVar",
language: "js",
deprecated: "Use the rule `noAnotherVar`",
recommended: false,
}
}