All Projects → ember-template-lint → Ember Cli Template Lint

ember-template-lint / Ember Cli Template Lint

Licence: mit
Ember CLI integration for ember-template-lint

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to Ember Cli Template Lint

Dashboards
Responsive dashboard templates 📊✨
Stars: ✭ 10,914 (+6896.15%)
Mutual labels:  templates
Ember Web App
NOTICE: official repository moved to https://github.com/zonkyio/ember-web-app
Stars: ✭ 143 (-8.33%)
Mutual labels:  ember-cli
Pine Utils
Code Snippets + Tricks & Tips to help Pine Script developers
Stars: ✭ 149 (-4.49%)
Mutual labels:  templates
Shards Ui
🎨Shards is a beautiful & modern Bootstrap 4 UI kit packed with extra templates and components.
Stars: ✭ 1,718 (+1001.28%)
Mutual labels:  templates
Ember Model Validator
ember-cli addon adds validation support to your Ember-Data models.
Stars: ✭ 141 (-9.62%)
Mutual labels:  ember-cli
Breko Hub
Babel React Koa Hot Universal Boilerplate
Stars: ✭ 145 (-7.05%)
Mutual labels:  lint
Readable Pylint Messages
List of pylint human readable message ids and dev readable codes
Stars: ✭ 134 (-14.1%)
Mutual labels:  lint
Latex Koma Template
Generic template for midsize and larger documents based on KOMA script classes.
Stars: ✭ 151 (-3.21%)
Mutual labels:  templates
Kotlin Gradle Plugin Template
🐘 A template to let you started with custom Gradle Plugins + Kotlin in a few seconds
Stars: ✭ 141 (-9.62%)
Mutual labels:  templates
Pettier
Prettier config that randomizes options and arbitrarily switches between spaces and tabs 🙄
Stars: ✭ 149 (-4.49%)
Mutual labels:  lint
Android Development Aircraft Carrier
打造安卓开发航空母舰,Android Studio 使用集锦
Stars: ✭ 138 (-11.54%)
Mutual labels:  lint
Dart Lint
An opinionated, community-driven set of lint rules for Dart and Flutter projects. Like pedantic but stricter
Stars: ✭ 141 (-9.62%)
Mutual labels:  lint
Django Mail Templated
Send emails using Django template system
Stars: ✭ 146 (-6.41%)
Mutual labels:  templates
Algorithmic template
🍭lzyrapx 's algorithmic library. Some templates for ACMer, OIer, Algorithm enthusiast.
Stars: ✭ 136 (-12.82%)
Mutual labels:  templates
Ember Realworld
Ember.js RealWorld Implementation
Stars: ✭ 150 (-3.85%)
Mutual labels:  ember-cli
Syntastic
Syntax checking hacks for vim
Stars: ✭ 11,044 (+6979.49%)
Mutual labels:  lint
Protolint
A pluggable linter and fixer to enforce Protocol Buffer style and conventions.
Stars: ✭ 142 (-8.97%)
Mutual labels:  lint
Misspell Fixer
Simple tool for fixing common misspellings, typos in source code
Stars: ✭ 154 (-1.28%)
Mutual labels:  lint
Point Of View
Template rendering plugin for Fastify
Stars: ✭ 150 (-3.85%)
Mutual labels:  templates
Ember Cli Mocha
Mocha and Chai tests for ember-cli applications
Stars: ✭ 147 (-5.77%)
Mutual labels:  ember-cli

ember-cli-template-lint

npm version Build Status

🔴 DEPRECATED 🔴

ember-cli-template-lint is deprecated!!

Please use ember-template-lint directly instead.

More info / background:

General Info

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

For example, given the rule no-bare-strings is enabled, this template would be in violation:

{{! app/components/my-thing/template.hbs }}
<div>A bare string</div>

Thus a the test TemplateLint: app/components/my-thing/template.hbs would fail with the assertion "A bare string was found (0:5)".

Install

To install ember-cli-template-lint

ember install ember-cli-template-lint

Ember CLI >= 2.4.2 is required for linting templates

Configuration

ember-cli-template-lint is powered by ember-template-lint which allows configuration by using a .template-lintrc.js file in the root of your project.

See here details on configuration and rules that are available.

Installation

  • git clone this repository
  • npm install
  • bower install

Running

Running Tests

  • npm run nodetest
  • ember test
  • ember test --server

Building

  • ember build

For more information on using ember-cli, visit http://www.ember-cli.com/.

Troubleshooting

If your files aren't linted make sure that you don't have the following option set in your ember-cli-build.js:

var app = new EmberApp(defaults, {
  hinting: false
});
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].