noMissingVarFunction
¥Summary
-
规则生效日期:
v1.9.2¥Rule available since:
v1.9.2 -
诊断类别:
lint/correctness/noMissingVarFunction¥Diagnostic Category:
lint/correctness/noMissingVarFunction -
此规则为推荐规则,默认启用。
¥This rule is recommended, which means is enabled by default.
-
此规则没有修复方案。
¥This rule doesn’t have a fix.
-
此规则的默认严重级别为 error。
¥The default severity of this rule is error.
-
来源:
¥Sources:
¥How to configure
{ "linter": { "rules": { "correctness": { "noMissingVarFunction": "error" } } }}¥Description
禁止 CSS 变量缺少 var 函数。
¥Disallow missing var function for css variables.
此规则有以下限制:
¥This rule has the following limitations:
-
现在,只会报告在同一源代码中定义且可访问的自定义属性。
¥It only reports custom properties that are defined and accessible within the same source.
-
不会检查可能包含作者自定义标识符的属性。
¥It does not check properties that can contain author-defined identifiers.
-
它会忽略以下属性:
¥It ignores the following properties:
-
animation -
animation-name -
counter-increment -
counter-reset -
counter-set -
grid-column -
grid-column-end -
grid-column-start -
grid-row -
grid-row-end -
grid-row-start -
list-style -
list-style-type -
transition -
transition-property -
view-transition-name -
will-change
-
¥Examples
¥Invalid
a { --foo: red; color: --foo;}code-block.css:3:10 lint/correctness/noMissingVarFunction ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
✖ CSS variables ‘—foo’ is used without the ‘var()’ function
1 │ a {
2 │ —foo: red;
> 3 │ color: —foo;
│ ^^^^^
4 │ }
5 │
ℹ CSS variables should be used with the ‘var()’ function to ensure proper fallback behavior and browser compatibility.
.parent { --foo: red; .child { color: --foo; }}code-block.css:4:12 lint/correctness/noMissingVarFunction ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
✖ CSS variables ‘—foo’ is used without the ‘var()’ function
2 │ —foo: red;
3 │ .child {
> 4 │ color: —foo;
│ ^^^^^
5 │ }
6 │ }
ℹ CSS variables should be used with the ‘var()’ function to ensure proper fallback behavior and browser compatibility.
@property --bar {}
a { color: --bar;}code-block.css:4:10 lint/correctness/noMissingVarFunction ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
✖ CSS variables ‘—bar’ is used without the ‘var()’ function
3 │ a {
> 4 │ color: —bar;
│ ^^^^^
5 │ }
6 │
ℹ CSS variables should be used with the ‘var()’ function to ensure proper fallback behavior and browser compatibility.
:root { --baz: 0;}
a { --foo: --baz;}code-block.css:6:10 lint/correctness/noMissingVarFunction ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
✖ CSS variables ‘—baz’ is used without the ‘var()’ function
5 │ a {
> 6 │ —foo: —baz;
│ ^^^^^
7 │ }
8 │
ℹ CSS variables should be used with the ‘var()’ function to ensure proper fallback behavior and browser compatibility.
¥Valid
p { color: var(--foo);}p { --foo: red; color: var(--foo);}p { color: --foo;}*:root {--global: red;}
a { color: var(--global);}@property --global-value {}a { color: var(--global-value);}a { view-transition-name: --bbb;}¥Related links
Biome v2.1 中文网 - 粤ICP备13048890号