Skip to content

Commit 7eb772b

Browse files
committed
Auto-generated commit
1 parent b9c160f commit 7eb772b

25 files changed

Lines changed: 24 additions & 29 deletions

File tree

.github/.keepalive

Lines changed: 0 additions & 1 deletion
This file was deleted.

base/code-point-at/docs/types/index.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
* str = codePointAt( '🌷', 1, true );
3434
* // returns 127799
3535
*/
36-
declare function codePointAt( str: string, idx: number, backward: boolean ): number; // tslint:disable-line:max-line-length
36+
declare function codePointAt( str: string, idx: number, backward: boolean ): number;
3737

3838

3939
// EXPORTS //

base/distances/docs/types/index.d.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,7 @@
1818

1919
// TypeScript Version: 4.1
2020

21-
/* tslint:disable:max-line-length */
22-
/* tslint:disable:max-file-line-count */
21+
/* eslint-disable max-lines */
2322

2423
import levenshteinDistance = require( './../../../../base/distances/levenshtein' );
2524

base/docs/types/index.d.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,7 @@
1818

1919
// TypeScript Version: 4.1
2020

21-
/* tslint:disable:max-line-length */
22-
/* tslint:disable:max-file-line-count */
21+
/* eslint-disable max-lines */
2322

2423
import camelcase = require( './../../../base/camelcase' );
2524
import capitalize = require( './../../../base/capitalize' );

base/format-interpolate/docs/types/index.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ type StringOrToken = string | FormatIdentifier;
6363
* var out = formatInterpolate( tokens, 'boop' );
6464
* // returns 'beep boop'
6565
*/
66-
declare function formatInterpolate( tokens: Array<StringOrToken>, ...args: Array<any> ): string; // tslint:disable-line:max-line-length
66+
declare function formatInterpolate( tokens: Array<StringOrToken>, ...args: Array<any> ): string;
6767

6868

6969
// EXPORTS //

base/replace-before/docs/types/index.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@
4242
* var out = replaceBefore( 'Hello World!', 'xyz', 'foo' );
4343
* // returns 'Hello World!'
4444
*/
45-
declare function replaceBefore( str: string, search: string, replacement: string ): string; // tslint:disable-line:max-line-length
45+
declare function replaceBefore( str: string, search: string, replacement: string ): string;
4646

4747

4848
// EXPORTS //

base/replace/docs/types/index.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@
4343
* var out = replace( str, /([^\s]*)/gi, replacer);
4444
* // returns 'Oranges And Lemons Say The Bells Of St. Clement\'s'
4545
*/
46-
declare function repeat( str: string, search: RegExp, newval: string | Function ): string; // tslint:disable-line:max-line-length
46+
declare function repeat( str: string, search: RegExp, newval: string | Function ): string;
4747

4848

4949
// EXPORTS //

base/starts-with/docs/types/index.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@
5454
* var bool = startsWith( 'To be, or not to be, that is the question.', 'quest', -9 );
5555
* // returns true
5656
*/
57-
declare function startsWith( str: string, search: string, position: number ): boolean; // tslint:disable-line:max-line-length
57+
declare function startsWith( str: string, search: string, position: number ): boolean;
5858

5959

6060
// EXPORTS //

code-point-at/docs/types/index.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
* str = codePointAt( '🌷', 1, true );
3636
* // returns 127799
3737
*/
38-
declare function codePointAt( str: string, idx: number, backward?: boolean ): number; // tslint:disable-line:max-line-length
38+
declare function codePointAt( str: string, idx: number, backward?: boolean ): number;
3939

4040

4141
// EXPORTS //

docs/types/index.d.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,7 @@
1818

1919
// TypeScript Version: 4.1
2020

21-
/* tslint:disable:max-line-length */
22-
/* tslint:disable:max-file-line-count */
21+
/* eslint-disable max-lines */
2322

2423
import acronym = require( './../../acronym' );
2524
import base = require( './../../base' );

0 commit comments

Comments
 (0)