Files
WAI_Project_VUE/node_modules/yaml-eslint-parser/lib/visitor-keys.js
2025-11-24 23:24:06 +08:00

19 lines
551 B
JavaScript

"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.KEYS = void 0;
const eslint_visitor_keys_1 = require("eslint-visitor-keys");
const yamlKeys = {
Program: ["body"],
YAMLDocument: ["directives", "content"],
YAMLDirective: [],
YAMLMapping: ["pairs"],
YAMLPair: ["key", "value"],
YAMLSequence: ["entries"],
YAMLWithMeta: ["anchor", "tag", "value"],
YAMLScalar: [],
YAMLAlias: [],
YAMLAnchor: [],
YAMLTag: [],
};
exports.KEYS = (0, eslint_visitor_keys_1.unionWith)(yamlKeys);