Skip to content

Commit b0a1daf

Browse files
devversionandrewseguin
authored andcommitted
fix(schematics): template content exceeds max line length (#13521)
* Assuming most of the CLI projects have the line limit at around `100`, one line within the `address-form` TS template file exceeds this average max-line-length boundary by `17`.
1 parent c14c34e commit b0a1daf

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/lib/schematics/address-form/files/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,9 @@ export class <%= classify(name) %>Component {
2323
address2: null,
2424
city: [null, Validators.required],
2525
state: [null, Validators.required],
26-
postalCode: [null, Validators.compose([Validators.required, Validators.minLength(5), Validators.maxLength(5)])],
26+
postalCode: [null, Validators.compose([
27+
Validators.required, Validators.minLength(5), Validators.maxLength(5)])
28+
],
2729
shipping: ['free', Validators.required]
2830
});
2931

0 commit comments

Comments
 (0)