123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608 |
- 'use strict';
- var levn = require('levn');
- /**
- * @fileoverview Config Comment Parser
- * @author Nicholas C. Zakas
- */
- //-----------------------------------------------------------------------------
- // Type Definitions
- //-----------------------------------------------------------------------------
- /** @typedef {import("@eslint/core").RuleConfig} RuleConfig */
- /** @typedef {import("@eslint/core").RulesConfig} RulesConfig */
- /** @typedef {import("./types.ts").StringConfig} StringConfig */
- /** @typedef {import("./types.ts").BooleanConfig} BooleanConfig */
- //-----------------------------------------------------------------------------
- // Helpers
- //-----------------------------------------------------------------------------
- const directivesPattern = /^([a-z]+(?:-[a-z]+)*)(?:\s|$)/u;
- const validSeverities = new Set([0, 1, 2, "off", "warn", "error"]);
- /**
- * Determines if the severity in the rule configuration is valid.
- * @param {RuleConfig} ruleConfig A rule's configuration.
- */
- function isSeverityValid(ruleConfig) {
- const severity = Array.isArray(ruleConfig) ? ruleConfig[0] : ruleConfig;
- return validSeverities.has(severity);
- }
- /**
- * Determines if all severities in the rules configuration are valid.
- * @param {RulesConfig} rulesConfig The rules configuration to check.
- * @returns {boolean} `true` if all severities are valid, otherwise `false`.
- */
- function isEverySeverityValid(rulesConfig) {
- return Object.values(rulesConfig).every(isSeverityValid);
- }
- /**
- * Represents a directive comment.
- */
- class DirectiveComment {
- /**
- * The label of the directive, such as "eslint", "eslint-disable", etc.
- * @type {string}
- */
- label = "";
- /**
- * The value of the directive (the string after the label).
- * @type {string}
- */
- value = "";
- /**
- * The justification of the directive (the string after the --).
- * @type {string}
- */
- justification = "";
- /**
- * Creates a new directive comment.
- * @param {string} label The label of the directive.
- * @param {string} value The value of the directive.
- * @param {string} justification The justification of the directive.
- */
- constructor(label, value, justification) {
- this.label = label;
- this.value = value;
- this.justification = justification;
- }
- }
- //------------------------------------------------------------------------------
- // Public Interface
- //------------------------------------------------------------------------------
- /**
- * Object to parse ESLint configuration comments.
- */
- class ConfigCommentParser {
- /**
- * Parses a list of "name:string_value" or/and "name" options divided by comma or
- * whitespace. Used for "global" comments.
- * @param {string} string The string to parse.
- * @returns {StringConfig} Result map object of names and string values, or null values if no value was provided.
- */
- parseStringConfig(string) {
- const items = /** @type {StringConfig} */ ({});
- // Collapse whitespace around `:` and `,` to make parsing easier
- const trimmedString = string.replace(/\s*([:,])\s*/gu, "$1");
- trimmedString.split(/\s|,+/u).forEach(name => {
- if (!name) {
- return;
- }
- // value defaults to null (if not provided), e.g: "foo" => ["foo", null]
- const [key, value = null] = name.split(":");
- items[key] = value;
- });
- return items;
- }
- /**
- * Parses a JSON-like config.
- * @param {string} string The string to parse.
- * @returns {({ok: true, config: RulesConfig}|{ok: false, error: {message: string}})} Result map object
- */
- parseJSONLikeConfig(string) {
- // Parses a JSON-like comment by the same way as parsing CLI option.
- try {
- const items = levn.parse("Object", string) || {};
- /*
- * When the configuration has any invalid severities, it should be completely
- * ignored. This is because the configuration is not valid and should not be
- * applied.
- *
- * For example, the following configuration is invalid:
- *
- * "no-alert: 2 no-console: 2"
- *
- * This results in a configuration of { "no-alert": "2 no-console: 2" }, which is
- * not valid. In this case, the configuration should be ignored.
- */
- if (isEverySeverityValid(items)) {
- return {
- ok: true,
- config: items,
- };
- }
- } catch {
- // levn parsing error: ignore to parse the string by a fallback.
- }
- /*
- * Optionator cannot parse commaless notations.
- * But we are supporting that. So this is a fallback for that.
- */
- const normalizedString = string
- .replace(/([-a-zA-Z0-9/]+):/gu, '"$1":')
- .replace(/(\]|[0-9])\s+(?=")/u, "$1,");
- try {
- const items = JSON.parse(`{${normalizedString}}`);
- return {
- ok: true,
- config: items,
- };
- } catch (ex) {
- const errorMessage = ex instanceof Error ? ex.message : String(ex);
- return {
- ok: false,
- error: {
- message: `Failed to parse JSON from '${normalizedString}': ${errorMessage}`,
- },
- };
- }
- }
- /**
- * Parses a config of values separated by comma.
- * @param {string} string The string to parse.
- * @returns {BooleanConfig} Result map of values and true values
- */
- parseListConfig(string) {
- const items = /** @type {BooleanConfig} */ ({});
- string.split(",").forEach(name => {
- const trimmedName = name
- .trim()
- .replace(
- /^(?<quote>['"]?)(?<ruleId>.*)\k<quote>$/su,
- "$<ruleId>",
- );
- if (trimmedName) {
- items[trimmedName] = true;
- }
- });
- return items;
- }
- /**
- * Extract the directive and the justification from a given directive comment and trim them.
- * @param {string} value The comment text to extract.
- * @returns {{directivePart: string, justificationPart: string}} The extracted directive and justification.
- */
- #extractDirectiveComment(value) {
- const match = /\s-{2,}\s/u.exec(value);
- if (!match) {
- return { directivePart: value.trim(), justificationPart: "" };
- }
- const directive = value.slice(0, match.index).trim();
- const justification = value.slice(match.index + match[0].length).trim();
- return { directivePart: directive, justificationPart: justification };
- }
- /**
- * Parses a directive comment into directive text and value.
- * @param {string} string The string with the directive to be parsed.
- * @returns {DirectiveComment|undefined} The parsed directive or `undefined` if the directive is invalid.
- */
- parseDirective(string) {
- const { directivePart, justificationPart } =
- this.#extractDirectiveComment(string);
- const match = directivesPattern.exec(directivePart);
- if (!match) {
- return undefined;
- }
- const directiveText = match[1];
- const directiveValue = directivePart.slice(
- match.index + directiveText.length,
- );
- return new DirectiveComment(
- directiveText,
- directiveValue.trim(),
- justificationPart,
- );
- }
- }
- /**
- * @fileoverview A collection of helper classes for implementing `SourceCode`.
- * @author Nicholas C. Zakas
- */
- /* eslint class-methods-use-this: off -- Required to complete interface. */
- //-----------------------------------------------------------------------------
- // Type Definitions
- //-----------------------------------------------------------------------------
- /** @typedef {import("@eslint/core").VisitTraversalStep} VisitTraversalStep */
- /** @typedef {import("@eslint/core").CallTraversalStep} CallTraversalStep */
- /** @typedef {import("@eslint/core").TextSourceCode} TextSourceCode */
- /** @typedef {import("@eslint/core").TraversalStep} TraversalStep */
- /** @typedef {import("@eslint/core").SourceLocation} SourceLocation */
- /** @typedef {import("@eslint/core").SourceLocationWithOffset} SourceLocationWithOffset */
- /** @typedef {import("@eslint/core").SourceRange} SourceRange */
- /** @typedef {import("@eslint/core").Directive} IDirective */
- /** @typedef {import("@eslint/core").DirectiveType} DirectiveType */
- //-----------------------------------------------------------------------------
- // Helpers
- //-----------------------------------------------------------------------------
- /**
- * Determines if a node has ESTree-style loc information.
- * @param {object} node The node to check.
- * @returns {node is {loc:SourceLocation}} `true` if the node has ESTree-style loc information, `false` if not.
- */
- function hasESTreeStyleLoc(node) {
- return "loc" in node;
- }
- /**
- * Determines if a node has position-style loc information.
- * @param {object} node The node to check.
- * @returns {node is {position:SourceLocation}} `true` if the node has position-style range information, `false` if not.
- */
- function hasPosStyleLoc(node) {
- return "position" in node;
- }
- /**
- * Determines if a node has ESTree-style range information.
- * @param {object} node The node to check.
- * @returns {node is {range:SourceRange}} `true` if the node has ESTree-style range information, `false` if not.
- */
- function hasESTreeStyleRange(node) {
- return "range" in node;
- }
- /**
- * Determines if a node has position-style range information.
- * @param {object} node The node to check.
- * @returns {node is {position:SourceLocationWithOffset}} `true` if the node has position-style range information, `false` if not.
- */
- function hasPosStyleRange(node) {
- return "position" in node;
- }
- //-----------------------------------------------------------------------------
- // Exports
- //-----------------------------------------------------------------------------
- /**
- * A class to represent a step in the traversal process where a node is visited.
- * @implements {VisitTraversalStep}
- */
- class VisitNodeStep {
- /**
- * The type of the step.
- * @type {"visit"}
- * @readonly
- */
- type = "visit";
- /**
- * The kind of the step. Represents the same data as the `type` property
- * but it's a number for performance.
- * @type {1}
- * @readonly
- */
- kind = 1;
- /**
- * The target of the step.
- * @type {object}
- */
- target;
- /**
- * The phase of the step.
- * @type {1|2}
- */
- phase;
- /**
- * The arguments of the step.
- * @type {Array<any>}
- */
- args;
- /**
- * Creates a new instance.
- * @param {Object} options The options for the step.
- * @param {object} options.target The target of the step.
- * @param {1|2} options.phase The phase of the step.
- * @param {Array<any>} options.args The arguments of the step.
- */
- constructor({ target, phase, args }) {
- this.target = target;
- this.phase = phase;
- this.args = args;
- }
- }
- /**
- * A class to represent a step in the traversal process where a
- * method is called.
- * @implements {CallTraversalStep}
- */
- class CallMethodStep {
- /**
- * The type of the step.
- * @type {"call"}
- * @readonly
- */
- type = "call";
- /**
- * The kind of the step. Represents the same data as the `type` property
- * but it's a number for performance.
- * @type {2}
- * @readonly
- */
- kind = 2;
- /**
- * The name of the method to call.
- * @type {string}
- */
- target;
- /**
- * The arguments to pass to the method.
- * @type {Array<any>}
- */
- args;
- /**
- * Creates a new instance.
- * @param {Object} options The options for the step.
- * @param {string} options.target The target of the step.
- * @param {Array<any>} options.args The arguments of the step.
- */
- constructor({ target, args }) {
- this.target = target;
- this.args = args;
- }
- }
- /**
- * A class to represent a directive comment.
- * @implements {IDirective}
- */
- class Directive {
- /**
- * The type of directive.
- * @type {DirectiveType}
- * @readonly
- */
- type;
- /**
- * The node representing the directive.
- * @type {unknown}
- * @readonly
- */
- node;
- /**
- * Everything after the "eslint-disable" portion of the directive,
- * but before the "--" that indicates the justification.
- * @type {string}
- * @readonly
- */
- value;
- /**
- * The justification for the directive.
- * @type {string}
- * @readonly
- */
- justification;
- /**
- * Creates a new instance.
- * @param {Object} options The options for the directive.
- * @param {"disable"|"enable"|"disable-next-line"|"disable-line"} options.type The type of directive.
- * @param {unknown} options.node The node representing the directive.
- * @param {string} options.value The value of the directive.
- * @param {string} options.justification The justification for the directive.
- */
- constructor({ type, node, value, justification }) {
- this.type = type;
- this.node = node;
- this.value = value;
- this.justification = justification;
- }
- }
- /**
- * Source Code Base Object
- * @implements {TextSourceCode}
- */
- class TextSourceCodeBase {
- /**
- * The lines of text in the source code.
- * @type {Array<string>}
- */
- #lines;
- /**
- * The AST of the source code.
- * @type {object}
- */
- ast;
- /**
- * The text of the source code.
- * @type {string}
- */
- text;
- /**
- * Creates a new instance.
- * @param {Object} options The options for the instance.
- * @param {string} options.text The source code text.
- * @param {object} options.ast The root AST node.
- * @param {RegExp} [options.lineEndingPattern] The pattern to match lineEndings in the source code.
- */
- constructor({ text, ast, lineEndingPattern = /\r?\n/u }) {
- this.ast = ast;
- this.text = text;
- this.#lines = text.split(lineEndingPattern);
- }
- /**
- * Returns the loc information for the given node or token.
- * @param {object} nodeOrToken The node or token to get the loc information for.
- * @returns {SourceLocation} The loc information for the node or token.
- */
- getLoc(nodeOrToken) {
- if (hasESTreeStyleLoc(nodeOrToken)) {
- return nodeOrToken.loc;
- }
- if (hasPosStyleLoc(nodeOrToken)) {
- return nodeOrToken.position;
- }
- throw new Error(
- "Custom getLoc() method must be implemented in the subclass.",
- );
- }
- /**
- * Returns the range information for the given node or token.
- * @param {object} nodeOrToken The node or token to get the range information for.
- * @returns {SourceRange} The range information for the node or token.
- */
- getRange(nodeOrToken) {
- if (hasESTreeStyleRange(nodeOrToken)) {
- return nodeOrToken.range;
- }
- if (hasPosStyleRange(nodeOrToken)) {
- return [
- nodeOrToken.position.start.offset,
- nodeOrToken.position.end.offset,
- ];
- }
- throw new Error(
- "Custom getRange() method must be implemented in the subclass.",
- );
- }
- /* eslint-disable no-unused-vars -- Required to complete interface. */
- /**
- * Returns the parent of the given node.
- * @param {object} node The node to get the parent of.
- * @returns {object|undefined} The parent of the node.
- */
- getParent(node) {
- throw new Error("Not implemented.");
- }
- /* eslint-enable no-unused-vars -- Required to complete interface. */
- /**
- * Gets all the ancestors of a given node
- * @param {object} node The node
- * @returns {Array<object>} All the ancestor nodes in the AST, not including the provided node, starting
- * from the root node at index 0 and going inwards to the parent node.
- * @throws {TypeError} When `node` is missing.
- */
- getAncestors(node) {
- if (!node) {
- throw new TypeError("Missing required argument: node.");
- }
- const ancestorsStartingAtParent = [];
- for (
- let ancestor = this.getParent(node);
- ancestor;
- ancestor = this.getParent(ancestor)
- ) {
- ancestorsStartingAtParent.push(ancestor);
- }
- return ancestorsStartingAtParent.reverse();
- }
- /**
- * Gets the source code for the given node.
- * @param {object} [node] The AST node to get the text for.
- * @param {number} [beforeCount] The number of characters before the node to retrieve.
- * @param {number} [afterCount] The number of characters after the node to retrieve.
- * @returns {string} The text representing the AST node.
- * @public
- */
- getText(node, beforeCount, afterCount) {
- if (node) {
- const range = this.getRange(node);
- return this.text.slice(
- Math.max(range[0] - (beforeCount || 0), 0),
- range[1] + (afterCount || 0),
- );
- }
- return this.text;
- }
- /**
- * Gets the entire source text split into an array of lines.
- * @returns {Array<string>} The source text as an array of lines.
- * @public
- */
- get lines() {
- return this.#lines;
- }
- /**
- * Traverse the source code and return the steps that were taken.
- * @returns {Iterable<TraversalStep>} The steps that were taken while traversing the source code.
- */
- traverse() {
- throw new Error("Not implemented.");
- }
- }
- exports.CallMethodStep = CallMethodStep;
- exports.ConfigCommentParser = ConfigCommentParser;
- exports.Directive = Directive;
- exports.TextSourceCodeBase = TextSourceCodeBase;
- exports.VisitNodeStep = VisitNodeStep;
|