Skip to content
This repository was archived by the owner on Aug 24, 2022. It is now read-only.
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: ember-template-lint/ember-cli-template-lint
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v2.0.2
Choose a base ref
...
head repository: ember-template-lint/ember-cli-template-lint
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: master
Choose a head ref
Loading
Showing with 3,789 additions and 1,473 deletions.
  1. +15 −0 README.md
  2. +17 −17 package.json
  3. +3,757 −1,456 yarn.lock
15 changes: 15 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -3,6 +3,21 @@
[![npm version](https://badge.fury.io/js/ember-cli-template-lint.svg)](https://badge.fury.io/js/ember-cli-template-lint)
[![Build Status](https://travis-ci.org/ember-template-lint/ember-cli-template-lint.svg?branch=master)](https://travis-ci.org/ember-template-lint/ember-cli-template-lint)


## 🔴 DEPRECATED 🔴

**ember-cli-template-lint is deprecated!!**

Please use [ember-template-lint](https://github.com/ember-template-lint/ember-template-lint) directly instead.

More info / background:

* https://github.com/ember-cli/rfcs/pull/121
* https://github.com/emberjs/rfcs/blob/master/text/0121-remove-ember-cli-eslint.md
* https://github.com/ember-cli/ember-cli/pull/9009

## General Info

ember-cli-template-lint will lint your templates and add a test for each asserting
that all style rules have been satisfied.

34 changes: 17 additions & 17 deletions package.json
Original file line number Diff line number Diff line change
@@ -31,49 +31,49 @@
},
"dependencies": {
"aot-test-generators": "^0.1.0",
"broccoli-concat": "^4.2.2",
"broccoli-concat": "^4.2.4",
"broccoli-persistent-filter": "^2.1.0",
"chalk": "^3.0.0",
"debug": "^4.0.1",
"ember-cli-version-checker": "^5.0.1",
"ember-template-lint": "^2.0.1",
"debug": "^4.3.1",
"ember-cli-version-checker": "^5.1.2",
"ember-template-lint": "^2.14.0",
"json-stable-stringify": "^1.0.1",
"md5-hex": "^3.0.1",
"strip-ansi": "^6.0.0",
"walk-sync": "^2.0.2"
"walk-sync": "^2.2.0"
},
"devDependencies": {
"@ember/optional-features": "^1.1.0",
"babel-eslint": "^10.0.3",
"broccoli-asset-rev": "^3.0.0",
"broccoli-test-helper": "^2.0.0",
"chai": "^4.1.2",
"chai": "^4.3.0",
"co": "^4.6.0",
"console-ui": "^3.1.1",
"ember-cli": "~3.16.0",
"ember-cli-babel": "^7.13.0",
"console-ui": "^3.1.2",
"ember-cli": "~3.22.0",
"ember-cli-babel": "^7.23.1",
"ember-cli-blueprint-test-helpers": "^0.19.1",
"ember-cli-dependency-checker": "^3.2.0",
"ember-cli-eslint": "^5.1.0",
"ember-cli-htmlbars": "^4.2.0",
"ember-cli-htmlbars": "^5.6.2",
"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-load-initializers": "^2.1.2",
"ember-maybe-import-regenerator": "^0.1.6",
"ember-qunit": "^4.6.0",
"ember-resolver": "^7.0.0",
"ember-resolver": "^8.0.2",
"ember-source": "~3.16.1",
"ember-source-channel-url": "^2.0.1",
"ember-try": "^1.4.0",
"eslint-plugin-ember": "^7.7.1",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-ember": "^8.14.0",
"eslint-plugin-node": "^11.1.0",
"loader.js": "^4.7.0",
"mocha": "^7.0.0",
"mocha": "^8.4.0",
"mocha-eslint": "^6.0.0",
"mocha-only-detector": "^1.0.0",
"qunit-dom": "^1.0.0",
"testdouble": "^3.12.5"
"qunit-dom": "^1.6.0",
"testdouble": "^3.16.1"
},
"engines": {
"node": "10.* || >=12.*"
Loading