Skip to content

Commit 509acfb

Browse files
committed
Disable line length rule path
1 parent e8dfa5d commit 509acfb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/utils.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ export function indent(input: string | string[], level: number = 1): string {
6666
* @param content
6767
*/
6868
export function writeFile(file: string, content: string, header: string): void {
69-
const disable = '/* tslint:disable:max-line-lengtx */';
69+
const disable = '/* tslint:disable:max-line-length */';
7070
content = `${disable}\n${header}\n${content}`;
7171
fs.writeFileSync(file, content);
7272
out(`${file} generated`, 'green');

0 commit comments

Comments
 (0)