Skip to content

Commit 3723b66

Browse files
chore: fix EditorConfig lint errors
PR-URL: #7001 Closes: #6992 Reviewed-by: Philipp Burckhardt <[email protected]> Signed-off-by: Lalit Narayan Yadav <[email protected]>
1 parent a317baf commit 3723b66

File tree

4 files changed

+23
-23
lines changed

4 files changed

+23
-23
lines changed

lib/node_modules/@stdlib/_tools/eslint/rules/eol-open-bracket-spacing/examples/index.js

Lines changed: 18 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -45,22 +45,22 @@ var result = linter.verify( code, {
4545
});
4646
console.log( result );
4747
/* =>
48-
[
49-
{
50-
'ruleId': 'eol-open-bracket-spacing',
51-
'severity': 2,
52-
'message': 'No spaces allowed between an opening parenthesis or bracket and a nested object or array expression at the end of a line',
53-
'line': 3,
54-
'column': 3,
55-
'nodeType': 'CallExpression'
56-
},
57-
{
58-
'ruleId': 'eol-open-bracket-spacing',
59-
'severity': 2,
60-
'message': 'No spaces allowed between an opening parenthesis or bracket and a nested object or array expression at the end of a line',
61-
'line': 6,
62-
'column': 13,
63-
'nodeType': 'ArrayExpression'
64-
}
65-
]
48+
[
49+
{
50+
'ruleId': 'eol-open-bracket-spacing',
51+
'severity': 2,
52+
'message': 'No spaces allowed between an opening parenthesis or bracket and a nested object or array expression at the end of a line',
53+
'line': 3,
54+
'column': 3,
55+
'nodeType': 'CallExpression'
56+
},
57+
{
58+
'ruleId': 'eol-open-bracket-spacing',
59+
'severity': 2,
60+
'message': 'No spaces allowed between an opening parenthesis or bracket and a nested object or array expression at the end of a line',
61+
'line': 6,
62+
'column': 13,
63+
'nodeType': 'ArrayExpression'
64+
}
65+
]
6666
*/

lib/node_modules/@stdlib/blas/base/sdot/src/sdot_ndarray.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ float API_SUFFIX(c_sdot_ndarray)( const CBLAS_INT N, const float *X, const CBLAS
5151
}
5252
ix = offsetX;
5353
iy = offsetY;
54-
54+
5555
// If both strides are equal to `1`, use unrolled loops...
5656
if ( strideX == 1 && strideY == 1 ) {
5757
m = N % M;

lib/node_modules/@stdlib/blas/base/sgemm/test/fixtures/ca_cb_cc_nta_ntb.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,6 @@
1717
"C": [ 1.0, 5.0, 2.0, 6.0, 3.0, 7.0, 4.0, 8.0 ],
1818
"strideC1": 1,
1919
"strideC2": 2,
20-
"offsetC": 0,
20+
"offsetC": 0,
2121
"C_out": [ 7.0, 20.0, 8.0, 21.0, 9.0, 22.0, 10.0, 23.0 ]
2222
}
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"objectMode": false,
3-
"encoding": null,
4-
"sep": "\n"
2+
"objectMode": false,
3+
"encoding": null,
4+
"sep": "\n"
55
}

0 commit comments

Comments
 (0)