Skip to content

Commit 7126cc8

Browse files
authored
style: disable lint rule
Signed-off-by: Athan <[email protected]>
1 parent 3197e21 commit 7126cc8

File tree

1 file changed

+6
-4
lines changed
  • lib/node_modules/@stdlib/blas/base/ndarray/gdot/docs/types

1 file changed

+6
-4
lines changed

lib/node_modules/@stdlib/blas/base/ndarray/gdot/docs/types/test.ts

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,8 @@
1616
* limitations under the License.
1717
*/
1818

19+
/* eslint-disable space-in-parens */
20+
1921
import zeros = require( '@stdlib/ndarray/zeros' );
2022
import gdot = require( './index' );
2123

@@ -26,10 +28,10 @@ import gdot = require( './index' );
2628
{
2729
const x = zeros( [ 10 ], {
2830
'dtype': 'generic'
29-
} );
31+
});
3032
const y = zeros( [ 10 ], {
3133
'dtype': 'generic'
32-
} );
34+
});
3335

3436
gdot( [ x, y ] ); // $ExpectType number
3537
}
@@ -51,10 +53,10 @@ import gdot = require( './index' );
5153
{
5254
const x = zeros( [ 10 ], {
5355
'dtype': 'generic'
54-
} );
56+
});
5557
const y = zeros( [ 10 ], {
5658
'dtype': 'generic'
57-
} );
59+
});
5860

5961
gdot(); // $ExpectError
6062
gdot( [ x, y ], {} ); // $ExpectError

0 commit comments

Comments
 (0)