Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

ember-template-lint

Package Overview
Dependencies
Maintainers
1
Versions
215
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

ember-template-lint - npm Package Compare versions

Comparing version 0.5.18 to 0.6.0

9

CHANGELOG.md
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 @@

7

lib/config/recommended.js

@@ -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 @@

6

package.json
{
"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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc