Skip to content

Latest commit

 

History

History
52 lines (39 loc) · 602 Bytes

File metadata and controls

52 lines (39 loc) · 602 Bytes

no-text-align-justify

Disallow { text-align: justify; } anywhere.

Sources:

Options

true

The following pattern are considered violations:

.foo {
  text-align: justify;
}

The following patterns are not considered violations:

.foo {
  text-align: center;
}
.foo {
  text-align: left;
}
.foo {
  text-align: right;
}
.foo {
  text-align: start;
}
.foo {
  text-align: end;
}