Skip to content

Commit

Permalink
Chore: add internal rule to enforce meta.docs conventions (fixes #6954)…
Browse files Browse the repository at this point in the history
… (#7155)
  • Loading branch information
vitorbal authored and kaicataldo committed Sep 27, 2016
1 parent 722c68c commit 7bb800d
Show file tree
Hide file tree
Showing 5 changed files with 400 additions and 1 deletion.
3 changes: 3 additions & 0 deletions lib/internal-rules/.eslintrc.yml
@@ -0,0 +1,3 @@
rules:
internal-no-invalid-meta: "error"
internal-consistent-docs-description: "error"
131 changes: 131 additions & 0 deletions lib/internal-rules/internal-consistent-docs-description.js
@@ -0,0 +1,131 @@
/**
* @fileoverview Internal rule to enforce meta.docs.description conventions.
* @author Vitor Balocco
*/

"use strict";

const ALLOWED_FIRST_WORDS = [
"enforce",
"require",
"disallow"
];

//------------------------------------------------------------------------------
// Helpers
//------------------------------------------------------------------------------

/**
* Gets the property of the Object node passed in that has the name specified.
*
* @param {string} property Name of the property to return.
* @param {ASTNode} node The ObjectExpression node.
* @returns {ASTNode} The Property node or null if not found.
*/
function getPropertyFromObject(property, node) {
const properties = node.properties;

for (let i = 0; i < properties.length; i++) {
if (properties[i].key.name === property) {
return properties[i];
}
}

return null;
}

/**
* Verifies that the meta.docs.description property follows our internal conventions.
*
* @param {RuleContext} context The ESLint rule context.
* @param {ASTNode} exportsNode ObjectExpression node that the rule exports.
* @returns {void}
*/
function checkMetaDocsDescription(context, exportsNode) {
if (exportsNode.type !== "ObjectExpression") {

// if the exported node is not the correct format, "internal-no-invalid-meta" will already report this.
return;
}

const metaProperty = getPropertyFromObject("meta", exportsNode);
const metaDocs = metaProperty && getPropertyFromObject("docs", metaProperty.value);
const metaDocsDescription = metaDocs && getPropertyFromObject("description", metaDocs.value);

if (!metaDocsDescription) {

// if there is no `meta.docs.description` property, "internal-no-invalid-meta" will already report this.
return;
}

const description = metaDocsDescription.value.value;

if (typeof description !== "string") {
context.report({
node: metaDocsDescription.value,
message: "`meta.docs.description` should be a string."
});
return;
}

if (description === "") {
context.report({
node: metaDocsDescription.value,
message: "`meta.docs.description` should not be empty.",
});
return;
}

if (description.indexOf(" ") === 0) {
context.report({
node: metaDocsDescription.value,
message: "`meta.docs.description` should not start with whitespace."
});
return;
}

const firstWord = description.split(" ")[0];

if (ALLOWED_FIRST_WORDS.indexOf(firstWord) === -1) {
context.report({
node: metaDocsDescription.value,
message: "`meta.docs.description` should start with one of the following words: {{ allowedWords }}. Started with \"{{ firstWord }}\" instead.",
data: {
allowedWords: ALLOWED_FIRST_WORDS.join(", "),
firstWord
}
});
return;
}
}

//------------------------------------------------------------------------------
// Rule Definition
//------------------------------------------------------------------------------

module.exports = {
meta: {
docs: {
description: "enforce correct conventions of `meta.docs.description` property in core rules",
category: "Internal",
recommended: false
},

schema: []
},

create(context) {
return {
AssignmentExpression(node) {
if (node.left &&
node.right &&
node.left.type === "MemberExpression" &&
node.left.object.name === "module" &&
node.left.property.name === "exports") {

checkMetaDocsDescription(context, node.right);
}
}
};
}
};
1 change: 1 addition & 0 deletions lib/rules/.eslintrc.yml
@@ -1,2 +1,3 @@
rules:
internal-no-invalid-meta: "error"
internal-consistent-docs-description: "error"
2 changes: 1 addition & 1 deletion lib/rules/sort-keys.js
@@ -1,5 +1,5 @@
/**
* @fileoverview Rule to requires object keys to be sorted
* @fileoverview Rule to require object keys to be sorted
* @author Toru Nagashima
*/

Expand Down

0 comments on commit 7bb800d

Please sign in to comment.