Skip to content
This repository was archived by the owner on Oct 20, 2021. It is now read-only.

Commit 3b3eccb

Browse files
style(tslint): Disable max-file-line-count rule
1 parent c5b0a19 commit 3b3eccb

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

src/rules/tld.ts

-2
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,6 @@ export class Tld extends AbstractSearcher {
66
* Validate.
77
*/
88
public validate(input: any): boolean {
9-
/* tslint:disable:max-file-line-count */
10-
119
/**
1210
* List extracted from http://data.iana.org/TLD/tlds-alpha-by-domain.txt
1311
* Version 2017101701, Last Updated Wed Oct 18 07:07:02 2017 UTC

tslint.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
],
55
"rules": {
66
"number-literal-format": false,
7-
"ban-comma-operator": false
7+
"ban-comma-operator": false,
8+
"max-file-line-count": false
89
}
910
}

0 commit comments

Comments
 (0)