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.
36 lines
986 B
36 lines
986 B
/**
|
|
* @fileoverview Rule to disallow an empty pattern
|
|
* @author Alberto Rodríguez
|
|
*/
|
|
"use strict";
|
|
|
|
//------------------------------------------------------------------------------
|
|
// Rule Definition
|
|
//------------------------------------------------------------------------------
|
|
|
|
module.exports = {
|
|
meta: {
|
|
docs: {
|
|
description: "disallow empty destructuring patterns",
|
|
category: "Best Practices",
|
|
recommended: true
|
|
},
|
|
|
|
schema: []
|
|
},
|
|
|
|
create: function(context) {
|
|
return {
|
|
ObjectPattern: function(node) {
|
|
if (node.properties.length === 0) {
|
|
context.report(node, "Unexpected empty object pattern.");
|
|
}
|
|
},
|
|
ArrayPattern: function(node) {
|
|
if (node.elements.length === 0) {
|
|
context.report(node, "Unexpected empty array pattern.");
|
|
}
|
|
}
|
|
};
|
|
}
|
|
};
|
|
|