astro-ghostcms/.pnpm-store/v3/files/18/0e67f7970925b41fe935b3cf0f9...

65 lines
2.4 KiB
Plaintext
Raw Normal View History

2024-02-14 14:10:47 +00:00
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
const utils_1 = require("@typescript-eslint/utils");
const util_1 = require("../util");
exports.default = (0, util_1.createRule)({
name: 'no-this-alias',
meta: {
type: 'suggestion',
docs: {
description: 'Disallow aliasing `this`',
recommended: 'recommended',
},
schema: [
{
type: 'object',
additionalProperties: false,
properties: {
allowDestructuring: {
description: 'Whether to ignore destructurings, such as `const { props, state } = this`.',
type: 'boolean',
},
allowedNames: {
description: 'Names to ignore, such as ["self"] for `const self = this;`.',
type: 'array',
items: {
type: 'string',
},
},
},
},
],
messages: {
thisAssignment: "Unexpected aliasing of 'this' to local variable.",
thisDestructure: "Unexpected aliasing of members of 'this' to local variables.",
},
},
defaultOptions: [
{
allowDestructuring: true,
allowedNames: [],
},
],
create(context, [{ allowDestructuring, allowedNames }]) {
return {
"VariableDeclarator[init.type='ThisExpression'], AssignmentExpression[right.type='ThisExpression']"(node) {
const id = node.type === utils_1.AST_NODE_TYPES.VariableDeclarator ? node.id : node.left;
if (allowDestructuring && id.type !== utils_1.AST_NODE_TYPES.Identifier) {
return;
}
const hasAllowedName = id.type === utils_1.AST_NODE_TYPES.Identifier
? allowedNames.includes(id.name)
: false;
if (!hasAllowedName) {
context.report({
node: id,
messageId: id.type === utils_1.AST_NODE_TYPES.Identifier
? 'thisAssignment'
: 'thisDestructure',
});
}
},
};
},
});
//# sourceMappingURL=no-this-alias.js.map