Disallow { text-align: justify; }
anywhere.
Sources:
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;
}