From 19343f5f7a3359b989d091ed31d9e3c64cf89c9c Mon Sep 17 00:00:00 2001 From: Philipp Burckhardt Date: Sat, 16 Nov 2024 15:30:08 -0500 Subject: [PATCH] chore: fix copyright years and disable lint rules --- .../max-base10-exponent-subnormal/docs/types/index.d.ts | 2 +- .../float32/max-base10-exponent-subnormal/docs/types/test.ts | 2 +- .../float32/max-base10-exponent-subnormal/examples/index.js | 4 ++-- .../float32/max-base10-exponent-subnormal/lib/index.js | 2 ++ .../float32/max-base10-exponent-subnormal/test/test.js | 2 +- .../min-base10-exponent-subnormal/docs/types/index.d.ts | 2 +- .../float32/min-base10-exponent-subnormal/docs/types/test.ts | 2 +- .../float32/min-base10-exponent-subnormal/examples/index.js | 4 ++-- .../float32/min-base10-exponent-subnormal/lib/index.js | 2 ++ .../float32/min-base10-exponent-subnormal/test/test.js | 4 ++-- 10 files changed, 15 insertions(+), 11 deletions(-) diff --git a/lib/node_modules/@stdlib/constants/float32/max-base10-exponent-subnormal/docs/types/index.d.ts b/lib/node_modules/@stdlib/constants/float32/max-base10-exponent-subnormal/docs/types/index.d.ts index 38ad8033098c..eb818e5ad650 100644 --- a/lib/node_modules/@stdlib/constants/float32/max-base10-exponent-subnormal/docs/types/index.d.ts +++ b/lib/node_modules/@stdlib/constants/float32/max-base10-exponent-subnormal/docs/types/index.d.ts @@ -1,7 +1,7 @@ /* * @license Apache-2.0 * -* Copyright (c) 2019 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/constants/float32/max-base10-exponent-subnormal/docs/types/test.ts b/lib/node_modules/@stdlib/constants/float32/max-base10-exponent-subnormal/docs/types/test.ts index f6b89e77edb4..a5a865111fa6 100644 --- a/lib/node_modules/@stdlib/constants/float32/max-base10-exponent-subnormal/docs/types/test.ts +++ b/lib/node_modules/@stdlib/constants/float32/max-base10-exponent-subnormal/docs/types/test.ts @@ -1,7 +1,7 @@ /* * @license Apache-2.0 * -* Copyright (c) 2019 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/constants/float32/max-base10-exponent-subnormal/examples/index.js b/lib/node_modules/@stdlib/constants/float32/max-base10-exponent-subnormal/examples/index.js index d223d88fb9fd..45fad3806907 100644 --- a/lib/node_modules/@stdlib/constants/float32/max-base10-exponent-subnormal/examples/index.js +++ b/lib/node_modules/@stdlib/constants/float32/max-base10-exponent-subnormal/examples/index.js @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2018 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -18,7 +18,7 @@ 'use strict'; -var FLOAT32_MAX_BASE10_EXPONENT_SUBNORMAL = require( './../lib' ); +var FLOAT32_MAX_BASE10_EXPONENT_SUBNORMAL = require( './../lib' ); // eslint-disable-line id-length console.log( FLOAT32_MAX_BASE10_EXPONENT_SUBNORMAL ); // => -38 diff --git a/lib/node_modules/@stdlib/constants/float32/max-base10-exponent-subnormal/lib/index.js b/lib/node_modules/@stdlib/constants/float32/max-base10-exponent-subnormal/lib/index.js index cc1683136039..3941bb6e9e02 100644 --- a/lib/node_modules/@stdlib/constants/float32/max-base10-exponent-subnormal/lib/index.js +++ b/lib/node_modules/@stdlib/constants/float32/max-base10-exponent-subnormal/lib/index.js @@ -16,6 +16,8 @@ * limitations under the License. */ +/* eslint-disable id-length */ + 'use strict'; /** diff --git a/lib/node_modules/@stdlib/constants/float32/max-base10-exponent-subnormal/test/test.js b/lib/node_modules/@stdlib/constants/float32/max-base10-exponent-subnormal/test/test.js index c02661385f49..0fb43a5a26fe 100644 --- a/lib/node_modules/@stdlib/constants/float32/max-base10-exponent-subnormal/test/test.js +++ b/lib/node_modules/@stdlib/constants/float32/max-base10-exponent-subnormal/test/test.js @@ -21,7 +21,7 @@ // MODULES // var tape = require( 'tape' ); -var FLOAT32_MAX_BASE10_EXPONENT_SUBNORMAL = require( './../lib' ); +var FLOAT32_MAX_BASE10_EXPONENT_SUBNORMAL = require( './../lib' ); // eslint-disable-line id-length // TESTS // diff --git a/lib/node_modules/@stdlib/constants/float32/min-base10-exponent-subnormal/docs/types/index.d.ts b/lib/node_modules/@stdlib/constants/float32/min-base10-exponent-subnormal/docs/types/index.d.ts index 068124ddcb96..7d11a4816406 100644 --- a/lib/node_modules/@stdlib/constants/float32/min-base10-exponent-subnormal/docs/types/index.d.ts +++ b/lib/node_modules/@stdlib/constants/float32/min-base10-exponent-subnormal/docs/types/index.d.ts @@ -1,7 +1,7 @@ /* * @license Apache-2.0 * -* Copyright (c) 2019 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/constants/float32/min-base10-exponent-subnormal/docs/types/test.ts b/lib/node_modules/@stdlib/constants/float32/min-base10-exponent-subnormal/docs/types/test.ts index e8742cf9f7e1..0934e7ece558 100644 --- a/lib/node_modules/@stdlib/constants/float32/min-base10-exponent-subnormal/docs/types/test.ts +++ b/lib/node_modules/@stdlib/constants/float32/min-base10-exponent-subnormal/docs/types/test.ts @@ -1,7 +1,7 @@ /* * @license Apache-2.0 * -* Copyright (c) 2019 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/constants/float32/min-base10-exponent-subnormal/examples/index.js b/lib/node_modules/@stdlib/constants/float32/min-base10-exponent-subnormal/examples/index.js index 8e162b20c8d6..2fb9a3b30ff2 100644 --- a/lib/node_modules/@stdlib/constants/float32/min-base10-exponent-subnormal/examples/index.js +++ b/lib/node_modules/@stdlib/constants/float32/min-base10-exponent-subnormal/examples/index.js @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2018 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -18,7 +18,7 @@ 'use strict'; -var FLOAT32_MIN_BASE10_EXPONENT_SUBNORMAL = require( './../lib' ); +var FLOAT32_MIN_BASE10_EXPONENT_SUBNORMAL = require( './../lib' ); // eslint-disable-line id-length console.log( FLOAT32_MIN_BASE10_EXPONENT_SUBNORMAL ); // => -45 diff --git a/lib/node_modules/@stdlib/constants/float32/min-base10-exponent-subnormal/lib/index.js b/lib/node_modules/@stdlib/constants/float32/min-base10-exponent-subnormal/lib/index.js index 3d6b92663c6c..91a9bc6268b1 100644 --- a/lib/node_modules/@stdlib/constants/float32/min-base10-exponent-subnormal/lib/index.js +++ b/lib/node_modules/@stdlib/constants/float32/min-base10-exponent-subnormal/lib/index.js @@ -16,6 +16,8 @@ * limitations under the License. */ +/* eslint-disable id-length */ + 'use strict'; /** diff --git a/lib/node_modules/@stdlib/constants/float32/min-base10-exponent-subnormal/test/test.js b/lib/node_modules/@stdlib/constants/float32/min-base10-exponent-subnormal/test/test.js index 1ba92826016f..add48f8e5875 100644 --- a/lib/node_modules/@stdlib/constants/float32/min-base10-exponent-subnormal/test/test.js +++ b/lib/node_modules/@stdlib/constants/float32/min-base10-exponent-subnormal/test/test.js @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2018 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -21,7 +21,7 @@ // MODULES // var tape = require( 'tape' ); -var FLOAT32_MIN_BASE10_EXPONENT_SUBNORMAL = require( './../lib' ); +var FLOAT32_MIN_BASE10_EXPONENT_SUBNORMAL = require( './../lib' ); // eslint-disable-line id-length // TESTS //