eslint-plugin-dollar-sign
Advanced tools
Comparing version 1.0.0 to 1.0.1
{ | ||
"name": "eslint-plugin-dollar-sign", | ||
"version": "1.0.0", | ||
"version": "1.0.1", | ||
"description": "Enforce $varName for jQuery assignment.", | ||
@@ -23,6 +23,6 @@ "keywords": [ | ||
"devDependencies": { | ||
"eslint": "^1.2.0", | ||
"mocha": "^2.4.5" | ||
"eslint": "^4.11.0", | ||
"mocha": "^4.0.1" | ||
}, | ||
"license": "MIT" | ||
} |
@@ -152,2 +152,6 @@ /** | ||
if (!left) { | ||
return; | ||
} | ||
if (shouldVarNameStartWithDollar(left.name, prop.value)) { | ||
@@ -154,0 +158,0 @@ reportIdentifier(left, false); |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
6387
151