Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions lib/node_modules/@stdlib/blas/base/dsyr2/test/test.dsyr2.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,15 +20,13 @@

'use strict';

// MODULES //

Check failure on line 23 in lib/node_modules/@stdlib/blas/base/dsyr2/test/test.dsyr2.js

View workflow job for this annotation

GitHub Actions / Lint Changed Files

Header comment must be followed by an empty line

var tape = require( 'tape' );
var Float64Array = require( '@stdlib/array/float64' );
var dsyr2 = require( './../lib/dsyr2.js' );


// FIXTURES //

Check failure on line 29 in lib/node_modules/@stdlib/blas/base/dsyr2/test/test.dsyr2.js

View workflow job for this annotation

GitHub Actions / Lint Changed Files

Header comment must be followed by an empty line

var ru = require( './fixtures/row_major_u.json' );
var rl = require( './fixtures/row_major_l.json' );
var rx0 = require( './fixtures/row_major_x0.json' );
Expand All @@ -36,7 +34,7 @@
var rxnyp = require( './fixtures/row_major_xnyp.json' );
var rxpyn = require( './fixtures/row_major_xpyn.json' );
var rxnyn = require( './fixtures/row_major_xnyn.json' );

Check failure on line 37 in lib/node_modules/@stdlib/blas/base/dsyr2/test/test.dsyr2.js

View workflow job for this annotation

GitHub Actions / Lint Changed Files

Unexpected empty line between require statements
var cu = require( './fixtures/column_major_u.json' );
var cl = require( './fixtures/column_major_l.json' );
var cx0 = require( './fixtures/column_major_x0.json' );
Expand Down
Loading