node/tools/eslint/lib/rules/no-dupe-keys.js
Roman Reiss d91e10b3bd tools: update eslint to 0.24.0
PR-URL: https://github.com/nodejs/io.js/pull/2072
Reviewed-By: Yosuke Furukawa <yosuke.furukawa@gmail.com>
Reviewed-by: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Alex Kocharin <alex@kocharin.ru>
2015-06-29 19:02:17 +02:00

43 lines
1.3 KiB
JavaScript

/**
* @fileoverview Rule to flag use of duplicate keys in an object.
* @author Ian Christian Myers
* @copyright 2013 Ian Christian Myers. All rights reserved.
* @copyright 2013 Nicholas C. Zakas. All rights reserved.
*/
"use strict";
//------------------------------------------------------------------------------
// Rule Definition
//------------------------------------------------------------------------------
module.exports = function(context) {
return {
"ObjectExpression": function(node) {
// Object that will be a map of properties--safe because we will
// prefix all of the keys.
var nodeProps = Object.create(null);
node.properties.forEach(function(property) {
var keyName = property.key.name || property.key.value,
key = property.kind + "-" + keyName,
checkProperty = (!property.computed || property.key.type === "Literal");
if (checkProperty) {
if (nodeProps[key]) {
context.report(node, "Duplicate key '{{key}}'.", { key: keyName });
} else {
nodeProps[key] = true;
}
}
});
}
};
};
module.exports.schema = [];