Skip to content

Commit

Permalink
chore: fix copyright years and disable lint rules
Browse files Browse the repository at this point in the history
  • Loading branch information
Planeshifter committed Nov 16, 2024
1 parent 1b6e722 commit 19343f5
Show file tree
Hide file tree
Showing 10 changed files with 15 additions and 11 deletions.
Original file line number Diff line number Diff line change
@@ -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.
Expand Down
Original file line number Diff line number Diff line change
@@ -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.
Expand Down
Original file line number Diff line number Diff line change
@@ -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.
Expand All @@ -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
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,8 @@
* limitations under the License.
*/

/* eslint-disable id-length */

'use strict';

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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 //
Expand Down
Original file line number Diff line number Diff line change
@@ -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.
Expand Down
Original file line number Diff line number Diff line change
@@ -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.
Expand Down
Original file line number Diff line number Diff line change
@@ -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.
Expand All @@ -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
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,8 @@
* limitations under the License.
*/

/* eslint-disable id-length */

'use strict';

/**
Expand Down
Original file line number Diff line number Diff line change
@@ -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.
Expand All @@ -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 //
Expand Down

1 comment on commit 19343f5

@stdlib-bot
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Coverage Report

Package Statements Branches Functions Lines
constants/float32/max-base10-exponent-subnormal $\color{green}54/54$
$\color{green}+100.00\%$
$\color{green}1/1$
$\color{green}+100.00\%$
$\color{green}0/0$
$\color{green}+100.00\%$
$\color{green}54/54$
$\color{green}+100.00\%$
constants/float32/min-base10-exponent-subnormal $\color{green}50/50$
$\color{green}+100.00\%$
$\color{green}1/1$
$\color{green}+100.00\%$
$\color{green}0/0$
$\color{green}+100.00\%$
$\color{green}50/50$
$\color{green}+100.00\%$

The above coverage report was generated for the changes in this push.

Please sign in to comment.