first commit
This commit is contained in:
Generated
Vendored
+35
@@ -0,0 +1,35 @@
|
||||
"use strict";
|
||||
//#region lib/rules/syntaxes/scope-attribute.js
|
||||
/**
|
||||
* @author Yosuke Ota
|
||||
* See LICENSE file in root directory for full license.
|
||||
*/
|
||||
var require_scope_attribute = /* @__PURE__ */ require("../../_virtual/_rolldown/runtime.js").__commonJSMin(((exports, module) => {
|
||||
module.exports = {
|
||||
deprecated: "2.5.0",
|
||||
supported: "<3.0.0",
|
||||
/** @param {RuleContext} context @returns {TemplateListener} */
|
||||
createTemplateBodyVisitor(context) {
|
||||
/**
|
||||
* Reports `scope` node
|
||||
* @param {VDirectiveKey} scopeKey node of `scope`
|
||||
* @returns {void}
|
||||
*/
|
||||
function reportScope(scopeKey) {
|
||||
context.report({
|
||||
node: scopeKey,
|
||||
messageId: "forbiddenScopeAttribute",
|
||||
fix: (fixer) => fixer.replaceText(scopeKey, "slot-scope")
|
||||
});
|
||||
}
|
||||
return { "VAttribute[directive=true] > VDirectiveKey[name.name='scope']": reportScope };
|
||||
}
|
||||
};
|
||||
}));
|
||||
//#endregion
|
||||
Object.defineProperty(exports, "default", {
|
||||
enumerable: true,
|
||||
get: function() {
|
||||
return require_scope_attribute();
|
||||
}
|
||||
});
|
||||
Reference in New Issue
Block a user