eslint-plugin-svelte3
Advanced tools
Comparing version 2.7.3 to 3.0.0
@@ -0,1 +1,7 @@ | ||
# 3.0.0 | ||
- Breaking change: Node 10+ is now required | ||
- There are no specific changes yet that will not work on Node 8, but tests will no longer be run on Node 8, and there are no guarantees about it | ||
- Fix erroneous `no-unused-vars` for variables that are assigned to in the template, but are only used in the script | ||
# 2.7.3 | ||
@@ -2,0 +8,0 @@ |
@@ -265,2 +265,4 @@ 'use strict'; | ||
}); | ||
block.transformed_code += `{${vars.filter(v => v.referenced_from_script).map(v => v.name)}}`; | ||
} | ||
@@ -267,0 +269,0 @@ |
{ | ||
"name": "eslint-plugin-svelte3", | ||
"version": "2.7.3", | ||
"version": "3.0.0", | ||
"description": "An ESLint plugin for Svelte v3 components.", | ||
@@ -15,2 +15,5 @@ "keywords": [ | ||
"main": "index.js", | ||
"engines": { | ||
"node": ">=10" | ||
}, | ||
"repository": { | ||
@@ -36,5 +39,5 @@ "type": "git", | ||
"eslint": ">=6.0.0", | ||
"rollup": "^1", | ||
"rollup": "^2", | ||
"svelte": "^3.2.0" | ||
} | ||
} |
@@ -44,3 +44,3 @@ # eslint-plugin-svelte3 | ||
{ | ||
files: ['**/*.svelte'], | ||
files: ['*.svelte'], | ||
processor: 'svelte3/svelte3' | ||
@@ -47,0 +47,0 @@ } |
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
25494
364