mirror of https://github.com/lukechilds/node.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
117 lines
4.4 KiB
117 lines
4.4 KiB
/**
|
|
* @fileoverview Rule to warn about using dot notation instead of square bracket notation when possible.
|
|
* @author Josh Perez
|
|
*/
|
|
"use strict";
|
|
|
|
//------------------------------------------------------------------------------
|
|
// Rule Definition
|
|
//------------------------------------------------------------------------------
|
|
|
|
const validIdentifier = /^[a-zA-Z_$][a-zA-Z0-9_$]*$/;
|
|
const keywords = require("../util/keywords");
|
|
|
|
module.exports = {
|
|
meta: {
|
|
docs: {
|
|
description: "enforce dot notation whenever possible",
|
|
category: "Best Practices",
|
|
recommended: false
|
|
},
|
|
|
|
schema: [
|
|
{
|
|
type: "object",
|
|
properties: {
|
|
allowKeywords: {
|
|
type: "boolean"
|
|
},
|
|
allowPattern: {
|
|
type: "string"
|
|
}
|
|
},
|
|
additionalProperties: false
|
|
}
|
|
],
|
|
|
|
fixable: "code"
|
|
},
|
|
|
|
create(context) {
|
|
const options = context.options[0] || {};
|
|
const allowKeywords = options.allowKeywords === void 0 || !!options.allowKeywords;
|
|
const sourceCode = context.getSourceCode();
|
|
|
|
let allowPattern;
|
|
|
|
if (options.allowPattern) {
|
|
allowPattern = new RegExp(options.allowPattern);
|
|
}
|
|
|
|
return {
|
|
MemberExpression(node) {
|
|
if (
|
|
node.computed &&
|
|
node.property.type === "Literal" &&
|
|
validIdentifier.test(node.property.value) &&
|
|
(allowKeywords || keywords.indexOf(String(node.property.value)) === -1)
|
|
) {
|
|
if (!(allowPattern && allowPattern.test(node.property.value))) {
|
|
context.report({
|
|
node: node.property,
|
|
message: "[{{propertyValue}}] is better written in dot notation.",
|
|
data: {
|
|
propertyValue: JSON.stringify(node.property.value)
|
|
},
|
|
fix(fixer) {
|
|
const leftBracket = sourceCode.getTokenBefore(node.property);
|
|
const rightBracket = sourceCode.getTokenAfter(node.property);
|
|
const textBeforeProperty = sourceCode.text.slice(leftBracket.range[1], node.property.range[0]);
|
|
const textAfterProperty = sourceCode.text.slice(node.property.range[1], rightBracket.range[0]);
|
|
|
|
if (textBeforeProperty.trim() || textAfterProperty.trim()) {
|
|
|
|
// Don't perform any fixes if there are comments inside the brackets.
|
|
return null;
|
|
}
|
|
|
|
return fixer.replaceTextRange(
|
|
[leftBracket.range[0], rightBracket.range[1]],
|
|
`.${node.property.value}`
|
|
);
|
|
}
|
|
});
|
|
}
|
|
}
|
|
if (
|
|
!allowKeywords &&
|
|
!node.computed &&
|
|
keywords.indexOf(String(node.property.name)) !== -1
|
|
) {
|
|
context.report({
|
|
node: node.property,
|
|
message: ".{{propertyName}} is a syntax error.",
|
|
data: {
|
|
propertyName: node.property.name
|
|
},
|
|
fix(fixer) {
|
|
const dot = sourceCode.getTokenBefore(node.property);
|
|
const textAfterDot = sourceCode.text.slice(dot.range[1], node.property.range[0]);
|
|
|
|
if (textAfterDot.trim()) {
|
|
|
|
// Don't perform any fixes if there are comments between the dot and the property name.
|
|
return null;
|
|
}
|
|
|
|
return fixer.replaceTextRange(
|
|
[dot.range[0], node.property.range[1]],
|
|
`[${textAfterDot}"${node.property.name}"]`
|
|
);
|
|
}
|
|
});
|
|
}
|
|
}
|
|
};
|
|
}
|
|
};
|
|
|