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

ember-template-lint

Package Overview
Dependencies
Maintainers
7
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 Versions

1
22

0.8.13

Diff

Changelog

Source

0.8.13

  • Add new quotes rule. Examples:

Enforce either:

<div class="my-class">test</div>
{{my-helper "hello there"}}

or:

<div class='my-class'>test</div>
{{my-helper 'hello there'}}

You can read more about the rule in the documentation.

rwjblue
published 0.8.12 •

Changelog

Source

0.8.12

  • Ensure packages required by the executable script are dependencies. This fixes issues when using ember-template-lint as a globally installed package.
rwjblue
published 0.8.11 •

Changelog

Source

0.8.11

  • Fix issue with attribute-indentation rule (reporting incorrect indentation for multiple valid invocations).
rwjblue
published 0.8.10 •

Changelog

Source

0.8.10

  • Add new no-trailing-spaces rule. Examples:

Bad:

<div>test</div>//••
//•••••

Good:

<div>test</div>//
//

You can read more about the rule in the documentation.

  • Add new eol-last rule. Examples:

Enforce either:

<div>test</div>

or:

<div>test</div>

You can read more about the rule in the documentation.

rwjblue
published 0.8.9 •

Changelog

Source

0.8.9

  • Add support for colgroup and caption to table-groups rule.
  • Colorize the error severity in the console output.
rwjblue
published 0.8.8 •

Changelog

Source

0.8.8

  • Add new table-groups rule. Examples:

The rule forbids the following:

<table>
  <tr>
    <td></td>
  </tr>
</table>
<table>
  {{some-thing content=content}}
</table>

Instead, you should write your table as:

<table>
  <tbody>
    <tr>
      <td></td>
    </tr>
  </tbody>
</table>
<table>
  <tbody>
    {{some-thing content=content}}
  </tbody>
</table>

You can read more about the rule in the documentation.

rwjblue
published 0.8.7 •

Changelog

Source

0.8.7

  • Ensure that the contents of else blocks (a.k.a. inverse blocks) are checked for indentation.
rwjblue
published 0.8.6 •

Changelog

Source

0.8.6

  • Fix error in simple-unless rule when an {{if or {{unless block was empty.
rwjblue
published 0.8.5 •

Changelog

Source

0.8.5

  • Add new template-length rule. When enabled, this rule restricts the total number of lines in a template file to the configured number. You can read more about the rule (and configuration) in the documentation.
rwjblue
published 0.8.4 •

Changelog

Source

0.8.4

  • Add new attribute-indentation rule. Examples:
{{! good }}

{{foo-bar baz="bat" derp="qux"}}

{{foo-bar
  baz="bat"
  derp="qux"
}}

{{#foo-bar
  baz="bat"
  derp="qux"
as |foo|}}
  stuff here
{{/foo-bar}}

{{#foo-bar baz="bat" derp="qux" as |foo|}}
  stuff here
{{/foo-bar}}
{{! bad }}

{{foo-bar baz="bat"
  derp="qux"
}}

{{foo-bar
baz="bat"
derp="qux"
}}

{{foo-bar
  baz="bat"
  derp="qux"}}

You can read more about the rule (and configuration) in the documentation.

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