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.
65 lines
1.7 KiB
65 lines
1.7 KiB
/**
|
|
* @fileoverview Rule to flag use of console object
|
|
* @author Nicholas C. Zakas
|
|
*/
|
|
|
|
"use strict";
|
|
|
|
//------------------------------------------------------------------------------
|
|
// Rule Definition
|
|
//------------------------------------------------------------------------------
|
|
|
|
module.exports = {
|
|
meta: {
|
|
docs: {
|
|
description: "disallow the use of `console`",
|
|
category: "Possible Errors",
|
|
recommended: true
|
|
},
|
|
|
|
schema: [
|
|
{
|
|
type: "object",
|
|
properties: {
|
|
allow: {
|
|
type: "array",
|
|
items: {
|
|
type: "string"
|
|
},
|
|
minItems: 1,
|
|
uniqueItems: true
|
|
}
|
|
},
|
|
additionalProperties: false
|
|
}
|
|
]
|
|
},
|
|
|
|
create: function(context) {
|
|
|
|
return {
|
|
|
|
MemberExpression: function(node) {
|
|
|
|
if (node.object.name === "console") {
|
|
var blockConsole = true;
|
|
|
|
if (context.options.length > 0) {
|
|
var allowedProperties = context.options[0].allow;
|
|
var passedProperty = node.property.name;
|
|
var propertyIsAllowed = (allowedProperties.indexOf(passedProperty) > -1);
|
|
|
|
if (propertyIsAllowed) {
|
|
blockConsole = false;
|
|
}
|
|
}
|
|
|
|
if (blockConsole) {
|
|
context.report(node, "Unexpected console statement.");
|
|
}
|
|
}
|
|
}
|
|
};
|
|
|
|
}
|
|
};
|
|
|