Skip to content

noUnusedTemplateLiteral (JavaScript)

Language JavaScript (and super languages)
biome.json
{
"linter": {
"rules": {
"style": {
"noUnusedTemplateLiteral": "error"
}
}
}
}

Disallow template literals if interpolation and special-character handling are not needed

const foo = `bar`
code-block.js:1:13 lint/style/noUnusedTemplateLiteral  FIXABLE  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━

⚠ Do not use template literals if interpolation and special-character handling are not needed.

> 1 │ const foo = `bar`
│ ^^^^^
2 │

ℹ Safe fix: Replace with string literal

1 │ - const·foo·=·`bar`
1 │ + const·foo·=·"bar"
2 2 │

const foo = `bar `
code-block.js:1:13 lint/style/noUnusedTemplateLiteral  FIXABLE  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━

⚠ Do not use template literals if interpolation and special-character handling are not needed.

> 1 │ const foo = `bar `
│ ^^^^^^
2 │

ℹ Safe fix: Replace with string literal

1 │ - const·foo·=·`bar·`
1 │ + const·foo·=·"bar·"
2 2 │

const foo = `bar
has newline`;
const foo = `"bar"`
const foo = `'bar'`