@graphql-eslint/eslint-plugin
Version:
GraphQL plugin for ESLint
181 lines (180 loc) • 6.02 kB
JavaScript
import { Kind } from "graphql";
import lowerCase from "lodash.lowercase";
function requireGraphQLOperations(ruleId, context) {
const { siblingOperations } = context.sourceCode.parserServices;
if (!siblingOperations.available) {
throw new Error(
`Rule \`${ruleId}\` requires graphql-config \`documents\` field to be set and loaded. See https://the-guild.dev/graphql/eslint/docs/usage#providing-operations for more info`
);
}
return siblingOperations;
}
function requireGraphQLSchema(ruleId, context) {
const { schema } = context.sourceCode.parserServices;
if (!schema) {
throw new Error(
`Rule \`${ruleId}\` requires graphql-config \`schema\` field to be set and loaded. See https://the-guild.dev/graphql/eslint/docs/usage#providing-schema for more info`
);
}
return schema;
}
const chalk = {
red: (str) => `\x1B[31m${str}\x1B[39m`,
yellow: (str) => `\x1B[33m${str}\x1B[39m`
};
const logger = {
error: (...args) => (
// eslint-disable-next-line no-console
console.error(chalk.red("error"), "[graphql-eslint]", ...args)
),
warn: (...args) => (
// eslint-disable-next-line no-console
console.warn(chalk.yellow("warning"), "[graphql-eslint]", ...args)
)
};
const slash = (path) => path.replaceAll("\\", "/");
const VIRTUAL_DOCUMENT_REGEX = /[/\\]\d+_document.graphql$/;
const CWD = process.cwd();
const getTypeName = (node) => "type" in node ? getTypeName(node.type) : "name" in node && node.name ? node.name.value : "";
const TYPES_KINDS = [
Kind.OBJECT_TYPE_DEFINITION,
Kind.INTERFACE_TYPE_DEFINITION,
Kind.ENUM_TYPE_DEFINITION,
Kind.SCALAR_TYPE_DEFINITION,
Kind.INPUT_OBJECT_TYPE_DEFINITION,
Kind.UNION_TYPE_DEFINITION
];
const pascalCase = (str) => lowerCase(str).split(" ").map((word) => word.charAt(0).toUpperCase() + word.slice(1)).join("");
const camelCase = (str) => {
const result = pascalCase(str);
return result.charAt(0).toLowerCase() + result.slice(1);
};
const convertCase = (style, str) => {
switch (style) {
case "camelCase":
return camelCase(str);
case "PascalCase":
return pascalCase(str);
case "snake_case":
return lowerCase(str).replace(/ /g, "_");
case "UPPER_CASE":
return lowerCase(str).replace(/ /g, "_").toUpperCase();
case "kebab-case":
return lowerCase(str).replace(/ /g, "-");
}
};
function getLocation(start, fieldName = "") {
const { line, column } = start;
return {
start: {
line,
column
},
end: {
line,
column: column + fieldName.length
}
};
}
const REPORT_ON_FIRST_CHARACTER = { column: 0, line: 1 };
const ARRAY_DEFAULT_OPTIONS = {
type: "array",
uniqueItems: true,
minItems: 1,
items: {
type: "string"
}
};
const englishJoinWords = (words) => new Intl.ListFormat("en-US", { type: "disjunction" }).format(words);
const DisplayNodeNameMap = {
[ ]: "argument",
[ ]: "boolean",
[ ]: "directive",
[ ]: "directive",
[ ]: "document",
[ ]: "enum",
[ ]: "enum",
[ ]: "enum value",
[ ]: "enum",
[ ]: "field",
[ ]: "field",
[ ]: "float",
[ ]: "fragment",
[ ]: "fragment spread",
[ ]: "inline fragment",
[ ]: "input",
[ ]: "input",
[ ]: "input value",
[ ]: "int",
[ ]: "interface",
[ ]: "interface",
[ ]: "list type",
[ ]: "list",
[ ]: "name",
[ ]: "named type",
[ ]: "non-null type",
[ ]: "null",
[ ]: "object field",
[ ]: "type",
[ ]: "type",
[ ]: "object",
[ ]: "operation",
[ ]: "operation type",
[ ]: "scalar",
[ ]: "scalar",
[ ]: "schema",
[ ]: "schema",
[ ]: "selection set",
[ ]: "string",
[ ]: "union",
[ ]: "union",
[ ]: "variable",
[ ]: "variable"
};
function displayNodeName(node) {
return `${node.kind === Kind.OPERATION_DEFINITION ? node.operation : DisplayNodeNameMap[node.kind]} "${"alias" in node && node.alias?.value || "name" in node && node.name?.value || node.value}"`;
}
function getNodeName(node) {
switch (node.kind) {
case Kind.OBJECT_TYPE_DEFINITION:
case Kind.OBJECT_TYPE_EXTENSION:
case Kind.INTERFACE_TYPE_DEFINITION:
case Kind.ENUM_TYPE_DEFINITION:
case Kind.SCALAR_TYPE_DEFINITION:
case Kind.INPUT_OBJECT_TYPE_DEFINITION:
case Kind.UNION_TYPE_DEFINITION:
case Kind.DIRECTIVE_DEFINITION:
return displayNodeName(node);
case Kind.FIELD_DEFINITION:
case Kind.INPUT_VALUE_DEFINITION:
case Kind.ENUM_VALUE_DEFINITION:
return `${displayNodeName(node)} in ${displayNodeName(node.parent)}`;
case Kind.OPERATION_DEFINITION:
return node.name ? displayNodeName(node) : node.operation;
}
return "";
}
const eslintSelectorsTip = `> [!TIP]
>
> These fields are defined by ESLint [\`selectors\`](https://eslint.org/docs/developer-guide/selectors).
> Paste or drop code into the editor in [ASTExplorer](https://astexplorer.net) and inspect the generated AST to compose your selector.`;
export {
ARRAY_DEFAULT_OPTIONS,
CWD,
REPORT_ON_FIRST_CHARACTER,
TYPES_KINDS,
VIRTUAL_DOCUMENT_REGEX,
camelCase,
convertCase,
displayNodeName,
englishJoinWords,
eslintSelectorsTip,
getLocation,
getNodeName,
getTypeName,
logger,
pascalCase,
requireGraphQLOperations,
requireGraphQLSchema,
slash
};