Skip to content

Commit ef9e5f6

Browse files
committed
style: disable lint rule
1 parent 8f29918 commit ef9e5f6

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

lib/node_modules/@stdlib/blas/base/daxpy-wasm/benchmark/benchmark.module.main.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ function createBenchmark( len ) {
7676
mod = new daxpy.Module( mem );
7777

7878
// Initialize the module:
79-
mod.initializeSync();
79+
mod.initializeSync(); // eslint-disable-line node/no-sync
8080

8181
// Reallocate the underlying memory to allow storing two vectors:
8282
nb = bytesPerElement( options.dtype );

lib/node_modules/@stdlib/blas/base/daxpy-wasm/benchmark/benchmark.module.ndarray.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ function createBenchmark( len ) {
7676
mod = new daxpy.Module( mem );
7777

7878
// Initialize the module:
79-
mod.initializeSync();
79+
mod.initializeSync(); // eslint-disable-line node/no-sync
8080

8181
// Reallocate the underlying memory to allow storing two vectors:
8282
nb = bytesPerElement( options.dtype );

0 commit comments

Comments
 (0)