eslint-plugin-svelte3
Advanced tools
Comparing version 0.4.6 to 0.4.7
@@ -0,1 +1,5 @@ | ||
# v0.4.7 | ||
- Fix regression with specifying an array of warnings to ignore | ||
# v0.4.6 | ||
@@ -2,0 +6,0 @@ |
@@ -243,6 +243,3 @@ 'use strict'; | ||
const value = config.settings[key]; | ||
return typeof value === 'function' ? value : | ||
typeof value === 'boolean' || typeof value === 'object' ? () => value : | ||
Array.isArray(value) ? Array.prototype.includes.bind(value) : | ||
v => v === value; | ||
return typeof value === 'function' ? value : Array.isArray(value) ? Array.prototype.includes.bind(value) : () => value; | ||
}; | ||
@@ -249,0 +246,0 @@ |
{ | ||
"name": "eslint-plugin-svelte3", | ||
"version": "0.4.6", | ||
"version": "0.4.7", | ||
"description": "An ESLint plugin for Svelte v3 components.", | ||
@@ -5,0 +5,0 @@ "keywords": [ |
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
18979
254