Skip to content

Commit 5c59f48

Browse files
committed
fix: resolves lint issues
1 parent daa7a13 commit 5c59f48

File tree

8 files changed

+8
-8
lines changed

8 files changed

+8
-8
lines changed

lib/node_modules/@stdlib/constants/float32/num-high-word-significand-bits/docs/types/index.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,4 +30,4 @@ declare const FLOAT32_NUM_HIGH_WORD_SIGNIFICAND_BITS: number;
3030

3131
// EXPORTS //
3232

33-
export = FLOAT32_NUM_HIGH_WORD_SIGNIFICAND_BITS;
33+
export = FLOAT32_NUM_HIGH_WORD_SIGNIFICAND_BITS;

lib/node_modules/@stdlib/constants/float32/num-high-word-significand-bits/docs/types/test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,4 +25,4 @@ import FLOAT32_NUM_HIGH_WORD_SIGNIFICAND_BITS = require( '@stdlib/constants/floa
2525
{
2626
// eslint-disable-next-line @typescript-eslint/no-unused-expressions
2727
FLOAT32_NUM_HIGH_WORD_SIGNIFICAND_BITS; // $ExpectType number
28-
}
28+
}

lib/node_modules/@stdlib/constants/float32/num-high-word-significand-bits/examples/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,4 +21,4 @@
2121
var FLOAT32_NUM_HIGH_WORD_SIGNIFICAND_BITS = require( '@stdlib/constants/float32/num-high-word-significand-bits/lib' ); // eslint-disable-line id-length
2222

2323
console.log( FLOAT32_NUM_HIGH_WORD_SIGNIFICAND_BITS );
24-
// => 23
24+
// => 23

lib/node_modules/@stdlib/constants/float32/num-high-word-significand-bits/include/stdlib/constants/float32/num_high_word_significand_bits.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,4 +24,4 @@
2424
*/
2525
#define STDLIB_CONSTANT_FLOAT32_NUM_HIGH_WORD_SIGNIFICAND_BITS 23
2626

27-
#endif // !STDLIB_CONSTANTS_FLOAT32_NUM_HIGH_WORD_SIGNIFICAND_BITS_H
27+
#endif // !STDLIB_CONSTANTS_FLOAT32_NUM_HIGH_WORD_SIGNIFICAND_BITS_H

lib/node_modules/@stdlib/constants/float32/num-high-word-significand-bits/lib/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,4 +44,4 @@ var FLOAT32_NUM_HIGH_WORD_SIGNIFICAND_BITS = 23|0; // eslint-disable-line id-len
4444

4545
// EXPORTS //
4646

47-
module.exports = FLOAT32_NUM_HIGH_WORD_SIGNIFICAND_BITS;
47+
module.exports = FLOAT32_NUM_HIGH_WORD_SIGNIFICAND_BITS;

lib/node_modules/@stdlib/constants/float32/num-high-word-significand-bits/manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,4 +33,4 @@
3333
"dependencies": []
3434
}
3535
]
36-
}
36+
}

lib/node_modules/@stdlib/constants/float32/num-high-word-significand-bits/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,4 +65,4 @@
6565
"high",
6666
"word"
6767
]
68-
}
68+
}

lib/node_modules/@stdlib/constants/float32/num-high-word-significand-bits/test/test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,4 +35,4 @@ tape( 'main export is a number', function test( t ) {
3535
tape( 'the exported value is 23', function test( t ) {
3636
t.equal( FLOAT32_NUM_HIGH_WORD_SIGNIFICAND_BITS, 23, 'returns expected value' );
3737
t.end();
38-
});
38+
});

0 commit comments

Comments
 (0)