diff --git a/cspell.json b/cspell.json new file mode 100644 index 000000000000..bac919b8dce8 --- /dev/null +++ b/cspell.json @@ -0,0 +1,9 @@ +{ + "version": "0.2", + "words": [ + "ndone", + "nerrors", + "stdlib", + "anyby" + ] +} diff --git a/lib/node_modules/@stdlib/math/strided/special/acoversin-by/test/test.main.js b/lib/node_modules/@stdlib/math/strided/special/acoversin-by/test/test.main.js index 34e5907d4656..93db498e45ff 100644 --- a/lib/node_modules/@stdlib/math/strided/special/acoversin-by/test/test.main.js +++ b/lib/node_modules/@stdlib/math/strided/special/acoversin-by/test/test.main.js @@ -74,7 +74,8 @@ tape( 'the function computes the inverse coversed sine via a callback function', acoversinBy( x.length, x, 1, y, 1, accessor ); t.deepEqual( y, expected, 'deep equal' ); - x = new Array( 5 ); // sparse array + x = []; // sparse array + x.length = 5; y = [ 0.0, 0.0, 0.0, 0.0, 0.0 ]; expected = [ 0.0, 0.0, 0.0, 0.0, 0.0 ]; @@ -82,7 +83,8 @@ tape( 'the function computes the inverse coversed sine via a callback function', acoversinBy( x.length, x, 1, y, 1, accessor ); t.deepEqual( y, expected, 'deep equal' ); - x = new Array( 5 ); // sparse array + x = []; // sparse array + x.length = 5; x[ 2 ] = rand(); y = [ 0.0, 0.0, 0.0, 0.0, 0.0 ]; diff --git a/lib/node_modules/@stdlib/process/umask/scripts/binary_to_symbolic.js b/lib/node_modules/@stdlib/process/umask/scripts/binary_to_symbolic.js index f2d67aad14e8..4406a65c4d6b 100644 --- a/lib/node_modules/@stdlib/process/umask/scripts/binary_to_symbolic.js +++ b/lib/node_modules/@stdlib/process/umask/scripts/binary_to_symbolic.js @@ -37,7 +37,7 @@ var j; TOTAL = 8 * 8 * 8 * 8; // For each integer value (octal number), determine the symbolic notation equivalent to the value's binary representation... -masks = new Array( TOTAL ); +masks = []; for ( i = 0; i < TOTAL; i++ ) { tmp = ''; diff --git a/package.json b/package.json index e168d891abb3..e7243fb2a7a6 100644 --- a/package.json +++ b/package.json @@ -118,14 +118,14 @@ }, "devDependencies": { "0x": "^4.10.2", - "@cspell/eslint-plugin": "^8.8.0", "@commitlint/cli": "^17.4.4", "@commitlint/cz-commitlint": "^17.4.4", "@conventional-commits/parser": "^0.4.1", + "@cspell/eslint-plugin": "^8.8.0", "@kaciras/deasync": "^1.0.1", "@types/node": "^13.9.0", - "@typescript-eslint/parser": "^6.9.1", "@typescript-eslint/eslint-plugin": "^6.9.1", + "@typescript-eslint/parser": "^6.9.1", "ajv": "^5.2.2", "browser-pack-flat": "^3.0.0", "browserify": "^17.0.0", @@ -140,10 +140,10 @@ "editorconfig-checker": "^6.0.0", "envify": "^4.0.0", "eslint": "^8.57.0", - "eslint-plugin-node": "^11.1.0", "eslint-plugin-expect-type": "^0.2.3", "eslint-plugin-import": "^2.29.0", "eslint-plugin-jsdoc": "^46.8.2", + "eslint-plugin-node": "^11.1.0", "exorcist": "^2.0.0", "factor-bundle": "^2.5.0", "gh-pages": "git+https://github.com/Planeshifter/gh-pages.git#main", @@ -293,5 +293,15 @@ "ndarray", "numpy", "scipy" - ] + ], + "pnpm": { + "onlyBuiltDependencies": [ + "typedoc" + ], + "ignoredBuiltDependencies": [ + "@kaciras/deasync", + "es5-ext", + "highlight.js" + ] + } }