ember-template-lint
Advanced tools
Comparing version 0.5.18 to 0.6.0
Changelog | ||
========= | ||
## v0.6.0 | ||
- Add `invalid-interactive` to recommended rules. | ||
- Add `img-alt-attributes` to recommended rules. | ||
- Add `style-concatenation` to recommended rules. | ||
- Add `deprecated-inline-view-helper` to recommended rules. | ||
- Add `link-rel-noopener` to recommended rules. | ||
- Remove support for Node 0.10. | ||
## v0.5.18 | ||
@@ -5,0 +14,0 @@ |
@@ -10,3 +10,8 @@ 'use strict'; | ||
'triple-curlies': true, | ||
'deprecated-each-syntax': true | ||
'deprecated-each-syntax': true, | ||
'link-rel-noopener': true, | ||
'invalid-interactive': true, | ||
'img-alt-attributes': true, | ||
'style-concatenation': true, | ||
'deprecated-inline-view-helper': true | ||
}, | ||
@@ -13,0 +18,0 @@ |
{ | ||
"name": "ember-template-lint", | ||
"version": "0.5.18", | ||
"version": "0.6.0", | ||
"description": "Lint your templates.", | ||
@@ -22,3 +22,3 @@ "scripts": { | ||
"assert-diff": "^1.0.1", | ||
"eslint-plugin-node": "^2.0.0", | ||
"eslint-plugin-node": "^3.0.3", | ||
"espower-loader": "^1.0.0", | ||
@@ -37,3 +37,3 @@ "glob": "^7.0.0", | ||
"chalk": "^1.1.3", | ||
"exists-sync": "0.0.3", | ||
"exists-sync": "0.0.4", | ||
"htmlbars": "0.14.24", | ||
@@ -40,0 +40,0 @@ "lodash": "^4.11.1" |
@@ -273,6 +273,8 @@ # ember-template-lint | ||
However, this practice has performance problems (see [https://jakearchibald.com/2016/performance-benefits-of-rel-noopener/](https://jakearchibald.com/2016/performance-benefits-of-rel-noopener/)) | ||
and also opens a door to some security attacks because the opened page can redirect the opener app to | ||
somewhere to a malicious clone to perform phishing on your users. | ||
and also opens a door to some security attacks because the opened page can redirect the opener app | ||
to a malicious clone to perform phishing on your users. | ||
Adding `rel="noopener"` closes that door and avoids javascript in the opened tab to block the main | ||
thread in the opener. | ||
To avoid those two problems, this rule forbids the following: | ||
This rule forbids the following: | ||
@@ -279,0 +281,0 @@ ```hbs |
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
144347
3914
442
+ Addedexists-sync@0.0.4(transitive)
- Removedexists-sync@0.0.3(transitive)
Updatedexists-sync@0.0.4