Sha256: 731f036aafca7ecd7e0af2866b86adc95488a837a2884251e21a0b15a20bb767
Contents?: true
Size: 1.35 KB
Versions: 45
Compression:
Stored size: 1.35 KB
Contents
/** * @fileoverview Disallow string concatenation when using __dirname and __filename * @author Nicholas C. Zakas */ "use strict"; //------------------------------------------------------------------------------ // Rule Definition //------------------------------------------------------------------------------ module.exports = { meta: { docs: { description: "disallow string concatenation with `__dirname` and `__filename`", category: "Node.js and CommonJS", recommended: false }, schema: [] }, create: 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."); } } }; } };
Version data entries
45 entries across 45 versions & 2 rubygems