mirror of
https://github.com/nodejs/node.git
synced 2025-05-18 17:26:24 +00:00

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>
40 lines
1.1 KiB
JavaScript
40 lines
1.1 KiB
JavaScript
/**
|
|
* @fileoverview Disallow string concatenation when using __dirname and __filename
|
|
* @author Nicholas C. Zakas
|
|
*/
|
|
"use strict";
|
|
|
|
//------------------------------------------------------------------------------
|
|
// Rule Definition
|
|
//------------------------------------------------------------------------------
|
|
|
|
module.exports = function(context) {
|
|
|
|
var MATCHER = /^__(?:dir|file)name$/;
|
|
|
|
//--------------------------------------------------------------------------
|
|
// Public
|
|
//--------------------------------------------------------------------------
|
|
|
|
return {
|
|
|
|
"BinaryExpression": function(node) {
|
|
|
|
var left = node.left,
|
|
right = node.right;
|
|
|
|
if (node.operator === "+" &&
|
|
((left.type === "Identifier" && MATCHER.test(left.name)) ||
|
|
(right.type === "Identifier" && MATCHER.test(right.name)))
|
|
) {
|
|
|
|
context.report(node, "Use path.join() or path.resolve() instead of + to create paths.");
|
|
}
|
|
}
|
|
|
|
};
|
|
|
|
};
|
|
|
|
module.exports.schema = [];
|