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

ember-cli-template-lint

Package Overview
Dependencies
Maintainers
3
Versions
54
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

ember-cli-template-lint - npm Package Compare versions

Comparing version 1.0.0 to 2.0.0

3

blueprints/ember-cli-template-lint/recommended-files/.template-lintrc.js

@@ -1,6 +0,5 @@

/* eslint-env node */
'use strict';
module.exports = {
extends: 'recommended'
extends: 'octane'
};

@@ -1,6 +0,5 @@

/* eslint-env node */
'use strict';
module.exports = {
extends: 'recommended',
extends: 'octane',

@@ -7,0 +6,0 @@ rules: {

@@ -21,3 +21,3 @@ 'use strict';

let options = _options || {};
if (!options.hasOwnProperty('persist')) {
if (!Object.prototype.hasOwnProperty.call(options, 'persist')) {
options.persist = true;

@@ -24,0 +24,0 @@ }

Changelog
=========
## v2.0.0
- Update blueprint to use `octane` config
- Run `npx ember-cli-update`
- Drop NodeJs 6, 8, 11
## v1.0.0

@@ -5,0 +11,0 @@

'use strict';
/* eslint-env node */
module.exports = function(/* environment, appConfig */) {
return { };
};

@@ -10,3 +10,3 @@ 'use strict';

module.exports = {
name: 'ember-cli-template-lint',
name: require('./package').name,

@@ -13,0 +13,0 @@ included: function (app) {

The MIT License (MIT)
Copyright (c) 2016 Robert Jackson
Copyright (c) 2016-2019 Robert Jackson

@@ -5,0 +5,0 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

{
"name": "ember-cli-template-lint",
"version": "1.0.0",
"version": "2.0.0",
"description": "Lint your handlebars templates.",

@@ -25,2 +25,3 @@ "keywords": [

"build": "ember build",
"lint:hbs": "ember-template-lint .",
"lint:js": "eslint .",

@@ -34,14 +35,16 @@ "start": "ember serve",

"aot-test-generators": "^0.1.0",
"broccoli-concat": "^3.7.1",
"broccoli-concat": "^4.2.2",
"broccoli-persistent-filter": "^2.1.0",
"chalk": "^2.4.1",
"chalk": "^3.0.0",
"debug": "^4.0.1",
"ember-cli-version-checker": "^3.0.1",
"ember-template-lint": "^1.2.0",
"ember-template-lint": "^2.0.0-beta.5",
"json-stable-stringify": "^1.0.1",
"md5-hex": "^2.0.0",
"strip-ansi": "^4.0.0",
"walk-sync": "^1.1.3"
"md5-hex": "^3.0.1",
"strip-ansi": "^6.0.0",
"walk-sync": "^2.0.2"
},
"devDependencies": {
"@ember/optional-features": "^1.1.0",
"babel-eslint": "^10.0.3",
"broccoli-asset-rev": "^3.0.0",

@@ -51,27 +54,30 @@ "broccoli-test-helper": "^2.0.0",

"co": "^4.6.0",
"ember-cli": "~3.3.0",
"ember-cli-babel": "^7.1.0",
"console-ui": "^3.1.1",
"ember-cli": "~3.15.1",
"ember-cli-babel": "^7.13.0",
"ember-cli-blueprint-test-helpers": "^0.19.1",
"ember-cli-dependency-checker": "^3.0.0",
"ember-cli-htmlbars": "^3.0.0",
"ember-cli-htmlbars-inline-precompile": "^2.1.0",
"ember-cli-inject-live-reload": "^2.0.2",
"ember-cli-qunit": "^4.3.2",
"ember-cli-dependency-checker": "^3.2.0",
"ember-cli-eslint": "^5.1.0",
"ember-cli-htmlbars": "^4.2.0",
"ember-cli-inject-live-reload": "^2.0.1",
"ember-disable-prototype-extensions": "^1.1.3",
"ember-export-application-global": "^2.0.1",
"ember-load-initializers": "^2.1.1",
"ember-maybe-import-regenerator": "^0.1.6",
"ember-resolver": "^5.0.1",
"ember-source": "~3.9.1",
"ember-source-channel-url": "^1.1.0",
"ember-try": "^1.0.0",
"eslint-plugin-ember": "^6.5.1",
"eslint-plugin-node": "^8.0.1",
"ember-qunit": "^4.6.0",
"ember-resolver": "^7.0.0",
"ember-source": "~3.15.0",
"ember-source-channel-url": "^2.0.1",
"ember-try": "^1.4.0",
"eslint-plugin-ember": "^7.7.1",
"eslint-plugin-node": "^10.0.0",
"loader.js": "^4.7.0",
"mocha": "^6.0.0",
"mocha-eslint": "^5.0.0",
"mocha": "^7.0.0",
"mocha-eslint": "^6.0.0",
"mocha-only-detector": "^1.0.0",
"qunit-dom": "^0.8.0"
"qunit-dom": "^0.9.2",
"testdouble": "^3.12.5"
},
"engines": {
"node": "6.* || 8.* || >= 10.*"
"node": "10.* || >=12.*"
},

@@ -78,0 +84,0 @@ "ember-addon": {

@@ -32,6 +32,6 @@ # ember-cli-template-lint

ember-cli-template-lint is powered by [ember-template-lint](https://github.com/rwjblue/ember-template-lint)
ember-cli-template-lint is powered by [ember-template-lint](https://github.com/ember-template-lint/ember-template-lint)
which allows configuration by using a `.template-lintrc.js` file in the root of your project.
See [here](https://github.com/rwjblue/ember-template-lint/#rules) details on configuration and rules that are available.
See [here](https://github.com/ember-template-lint/ember-template-lint/#rules) details on configuration and rules that are available.

@@ -38,0 +38,0 @@ ### Installation

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