diff --git a/lib/node_modules/@stdlib/blas/ext/base/dsortsh/src/dsortsh.c b/lib/node_modules/@stdlib/blas/ext/base/dsortsh/src/dsortsh.c index 76479745876d..e0ce84995d62 100644 --- a/lib/node_modules/@stdlib/blas/ext/base/dsortsh/src/dsortsh.c +++ b/lib/node_modules/@stdlib/blas/ext/base/dsortsh/src/dsortsh.c @@ -51,8 +51,8 @@ void c_dsortsh( const int64_t N, const double order, double *X, const int64_t st bool flg; // Ciura's gap sequence: - const static int64_t GAPS[] = { 701, 301, 132, 57, 23, 10, 4, 1 }; - const static int64_t NGAPS = 8; + static const int64_t GAPS[] = { 701, 301, 132, 57, 23, 10, 4, 1 }; + static const int64_t NGAPS = 8; if ( N <= 0 || order == 0.0 ) { return; diff --git a/lib/node_modules/@stdlib/ndarray/base/every/scripts/predicate_loops.js b/lib/node_modules/@stdlib/ndarray/base/every/scripts/predicate_loops.js index 973ba4e9f59a..71b44e8937e6 100644 --- a/lib/node_modules/@stdlib/ndarray/base/every/scripts/predicate_loops.js +++ b/lib/node_modules/@stdlib/ndarray/base/every/scripts/predicate_loops.js @@ -18,6 +18,8 @@ * limitations under the License. */ +/* eslint-disable-next-line max-lines */ + 'use strict'; // MODULES //