Skip to content

Commit 19343f5

Browse files
committed
chore: fix copyright years and disable lint rules
1 parent 1b6e722 commit 19343f5

File tree

10 files changed

+15
-11
lines changed

10 files changed

+15
-11
lines changed

lib/node_modules/@stdlib/constants/float32/max-base10-exponent-subnormal/docs/types/index.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
* @license Apache-2.0
33
*
4-
* Copyright (c) 2019 The Stdlib Authors.
4+
* Copyright (c) 2024 The Stdlib Authors.
55
*
66
* Licensed under the Apache License, Version 2.0 (the "License");
77
* you may not use this file except in compliance with the License.

lib/node_modules/@stdlib/constants/float32/max-base10-exponent-subnormal/docs/types/test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
* @license Apache-2.0
33
*
4-
* Copyright (c) 2019 The Stdlib Authors.
4+
* Copyright (c) 2024 The Stdlib Authors.
55
*
66
* Licensed under the Apache License, Version 2.0 (the "License");
77
* you may not use this file except in compliance with the License.

lib/node_modules/@stdlib/constants/float32/max-base10-exponent-subnormal/examples/index.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/**
22
* @license Apache-2.0
33
*
4-
* Copyright (c) 2018 The Stdlib Authors.
4+
* Copyright (c) 2024 The Stdlib Authors.
55
*
66
* Licensed under the Apache License, Version 2.0 (the "License");
77
* you may not use this file except in compliance with the License.
@@ -18,7 +18,7 @@
1818

1919
'use strict';
2020

21-
var FLOAT32_MAX_BASE10_EXPONENT_SUBNORMAL = require( './../lib' );
21+
var FLOAT32_MAX_BASE10_EXPONENT_SUBNORMAL = require( './../lib' ); // eslint-disable-line id-length
2222

2323
console.log( FLOAT32_MAX_BASE10_EXPONENT_SUBNORMAL );
2424
// => -38

lib/node_modules/@stdlib/constants/float32/max-base10-exponent-subnormal/lib/index.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,8 @@
1616
* limitations under the License.
1717
*/
1818

19+
/* eslint-disable id-length */
20+
1921
'use strict';
2022

2123
/**

lib/node_modules/@stdlib/constants/float32/max-base10-exponent-subnormal/test/test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
// MODULES //
2222

2323
var tape = require( 'tape' );
24-
var FLOAT32_MAX_BASE10_EXPONENT_SUBNORMAL = require( './../lib' );
24+
var FLOAT32_MAX_BASE10_EXPONENT_SUBNORMAL = require( './../lib' ); // eslint-disable-line id-length
2525

2626

2727
// TESTS //

lib/node_modules/@stdlib/constants/float32/min-base10-exponent-subnormal/docs/types/index.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
* @license Apache-2.0
33
*
4-
* Copyright (c) 2019 The Stdlib Authors.
4+
* Copyright (c) 2024 The Stdlib Authors.
55
*
66
* Licensed under the Apache License, Version 2.0 (the "License");
77
* you may not use this file except in compliance with the License.

lib/node_modules/@stdlib/constants/float32/min-base10-exponent-subnormal/docs/types/test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
* @license Apache-2.0
33
*
4-
* Copyright (c) 2019 The Stdlib Authors.
4+
* Copyright (c) 2024 The Stdlib Authors.
55
*
66
* Licensed under the Apache License, Version 2.0 (the "License");
77
* you may not use this file except in compliance with the License.

lib/node_modules/@stdlib/constants/float32/min-base10-exponent-subnormal/examples/index.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/**
22
* @license Apache-2.0
33
*
4-
* Copyright (c) 2018 The Stdlib Authors.
4+
* Copyright (c) 2024 The Stdlib Authors.
55
*
66
* Licensed under the Apache License, Version 2.0 (the "License");
77
* you may not use this file except in compliance with the License.
@@ -18,7 +18,7 @@
1818

1919
'use strict';
2020

21-
var FLOAT32_MIN_BASE10_EXPONENT_SUBNORMAL = require( './../lib' );
21+
var FLOAT32_MIN_BASE10_EXPONENT_SUBNORMAL = require( './../lib' ); // eslint-disable-line id-length
2222

2323
console.log( FLOAT32_MIN_BASE10_EXPONENT_SUBNORMAL );
2424
// => -45

lib/node_modules/@stdlib/constants/float32/min-base10-exponent-subnormal/lib/index.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,8 @@
1616
* limitations under the License.
1717
*/
1818

19+
/* eslint-disable id-length */
20+
1921
'use strict';
2022

2123
/**

lib/node_modules/@stdlib/constants/float32/min-base10-exponent-subnormal/test/test.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/**
22
* @license Apache-2.0
33
*
4-
* Copyright (c) 2018 The Stdlib Authors.
4+
* Copyright (c) 2024 The Stdlib Authors.
55
*
66
* Licensed under the Apache License, Version 2.0 (the "License");
77
* you may not use this file except in compliance with the License.
@@ -21,7 +21,7 @@
2121
// MODULES //
2222

2323
var tape = require( 'tape' );
24-
var FLOAT32_MIN_BASE10_EXPONENT_SUBNORMAL = require( './../lib' );
24+
var FLOAT32_MIN_BASE10_EXPONENT_SUBNORMAL = require( './../lib' ); // eslint-disable-line id-length
2525

2626

2727
// TESTS //

0 commit comments

Comments
 (0)