summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
Diffstat (limited to 'tools')
-rw-r--r--tools/eslint-rules/inspector-check.js43
1 files changed, 43 insertions, 0 deletions
diff --git a/tools/eslint-rules/inspector-check.js b/tools/eslint-rules/inspector-check.js
new file mode 100644
index 0000000000..f225b34cb6
--- /dev/null
+++ b/tools/eslint-rules/inspector-check.js
@@ -0,0 +1,43 @@
+/**
+ * @fileoverview Check that common.skipIfInspectorDisabled is used if
+ * the inspector module is required.
+ * @author Daniel Bevenius <daniel.bevenius@gmail.com>
+ */
+'use strict';
+
+const utils = require('./rules-utils.js');
+
+//------------------------------------------------------------------------------
+// Rule Definition
+//------------------------------------------------------------------------------
+const msg = 'Please add a skipIfInspectorDisabled() call to allow this ' +
+ 'test to be skippped when Node is built \'--without-inspector\'.';
+
+module.exports = function(context) {
+ var usesInspector = false;
+ var hasInspectorCheck = false;
+
+ function testInspectorUsage(context, node) {
+ if (utils.isRequired(node, ['inspector'])) {
+ usesInspector = true;
+ }
+ }
+
+ function checkMemberExpression(context, node) {
+ if (utils.usesCommonProperty(node, ['skipIfInspectorDisabled'])) {
+ hasInspectorCheck = true;
+ }
+ }
+
+ function reportIfMissing(context, node) {
+ if (usesInspector && !hasInspectorCheck) {
+ context.report(node, msg);
+ }
+ }
+
+ return {
+ 'CallExpression': (node) => testInspectorUsage(context, node),
+ 'MemberExpression': (node) => checkMemberExpression(context, node),
+ 'Program:exit': (node) => reportIfMissing(context, node)
+ };
+};