eslint-plugin-implicit-dependencies
Advanced tools
Comparing version 1.0.2 to 1.0.3
{ | ||
"name": "eslint-plugin-implicit-dependencies", | ||
"version": "1.0.2", | ||
"version": "1.0.3", | ||
"description": "eslint plugin to detect implicit dependencies", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
@@ -37,2 +37,7 @@ 'use strict'; | ||
// ignore dynamic arguments | ||
if (!name || typeof name !== 'string') { | ||
return; | ||
} | ||
if (name[0] !== '.' && name[0] !== '/') { | ||
@@ -39,0 +44,0 @@ // if module is a node core module then skip |
6137
80