Base UI
NPM Installation / build (16.x, ubuntu-latest) (push) Has been cancelled
NPM Installation / build (16.x, windows-latest) (push) Has been cancelled
NPM Installation / build (17.x, ubuntu-latest) (push) Has been cancelled
NPM Installation / build (17.x, windows-latest) (push) Has been cancelled
NPM Installation / build (18.x, ubuntu-latest) (push) Has been cancelled
NPM Installation / build (18.x, windows-latest) (push) Has been cancelled

This commit is contained in:
2026-06-25 11:15:13 +07:00
parent c539fe47af
commit cc038a7372
20561 changed files with 1811255 additions and 41 deletions
@@ -0,0 +1,23 @@
const require_index = require('../../utils/style-variables/index.js');
//#region lib/rules/syntaxes/style-css-vars-injection.ts
/**
* @author Yosuke Ota
* See LICENSE file in root directory for full license.
*/
var style_css_vars_injection_default = {
supported: ">=3.0.3 || >=2.7.0 <3.0.0",
createScriptVisitor(context) {
const styleVars = require_index.getStyleVariablesContext(context);
if (!styleVars) return {};
return { Program() {
for (const vBind of styleVars.vBinds) context.report({
node: vBind,
messageId: "forbiddenStyleCssVarsInjection"
});
} };
}
};
//#endregion
exports.default = style_css_vars_injection_default;