summaryrefslogtreecommitdiff
path: root/tools/node_modules/eslint/lib/rules/no-path-concat.js
diff options
context:
space:
mode:
Diffstat (limited to 'tools/node_modules/eslint/lib/rules/no-path-concat.js')
-rw-r--r--tools/node_modules/eslint/lib/rules/no-path-concat.js49
1 files changed, 49 insertions, 0 deletions
diff --git a/tools/node_modules/eslint/lib/rules/no-path-concat.js b/tools/node_modules/eslint/lib/rules/no-path-concat.js
new file mode 100644
index 0000000000..1e153a43b6
--- /dev/null
+++ b/tools/node_modules/eslint/lib/rules/no-path-concat.js
@@ -0,0 +1,49 @@
+/**
+ * @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(context) {
+
+ const MATCHER = /^__(?:dir|file)name$/;
+
+ //--------------------------------------------------------------------------
+ // Public
+ //--------------------------------------------------------------------------
+
+ return {
+
+ BinaryExpression(node) {
+
+ const 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, message: "Use path.join() or path.resolve() instead of + to create paths." });
+ }
+ }
+
+ };
+
+ }
+};