Skip to content

Latest commit

 

History

History
43 lines (28 loc) · 862 Bytes

File metadata and controls

43 lines (28 loc) · 862 Bytes

ember/template-no-trailing-spaces

🔧 This rule is automatically fixable by the --fix CLI option.

Disallow trailing whitespace at the end of lines.

Examples

In examples below, represents a trailing space character.

This rule forbids the following:

<div>test</div>•• •••••
<template>
  <div>Hello</div>••
</template>

This rule allows the following:

<div>test</div>
<template>
  <div>Hello</div>
</template>

Related Rules

References