Skip to content

Commit bef69f1

Browse files
committed
style: resolve lint errors
--- type: pre_commit_static_analysis_report description: Results of running static analysis checks when committing changes. report: - task: lint_filenames status: passed - task: lint_editorconfig status: passed - task: lint_markdown status: na - task: lint_package_json status: na - task: lint_repl_help status: na - task: lint_javascript_src status: na - task: lint_javascript_cli status: na - task: lint_javascript_examples status: na - task: lint_javascript_tests status: passed - task: lint_javascript_benchmarks status: na - task: lint_python status: na - task: lint_r status: na - task: lint_c_src status: na - task: lint_c_examples status: na - task: lint_c_benchmarks status: na - task: lint_c_tests_fixtures status: na - task: lint_shell status: na - task: lint_typescript_declarations status: na - task: lint_typescript_tests status: na - task: lint_license_headers status: passed ---
1 parent 6ca9bbb commit bef69f1

File tree

1 file changed

+8
-2
lines changed
  • lib/node_modules/@stdlib/ndarray/base/slice-to/test

1 file changed

+8
-2
lines changed

lib/node_modules/@stdlib/ndarray/base/slice-to/test/test.js

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

19-
/* eslint-disable object-curly-newline */
20-
2119
'use strict';
2220

2321
// MODULES //
@@ -142,6 +140,8 @@ tape( 'in non-strict mode, the function returns an empty array when an ending in
142140
var stop;
143141
var i;
144142

143+
/* eslint-disable object-curly-newline, stdlib/line-closing-bracket-spacing */
144+
145145
values = [
146146
zeros( [ 1 ], { 'dtype': 'float64' } ),
147147
zeros( [ 1, 1 ], { 'dtype': 'float32' } ),
@@ -150,6 +150,8 @@ tape( 'in non-strict mode, the function returns an empty array when an ending in
150150
zeros( [ 1, 1, 1, 1, 1 ], { 'dtype': 'complex128' } )
151151
];
152152

153+
/* eslint-enable object-curly-newline, stdlib/line-closing-bracket-spacing */
154+
153155
stop = [
154156
[ -10 ],
155157
[ null, -20 ],
@@ -172,6 +174,8 @@ tape( 'the function returns an empty array when an ending index is the first ele
172174
var stop;
173175
var i;
174176

177+
/* eslint-disable object-curly-newline, stdlib/line-closing-bracket-spacing */
178+
175179
values = [
176180
zeros( [ 1 ], { 'dtype': 'float64' } ),
177181
zeros( [ 1, 1 ], { 'dtype': 'float32' } ),
@@ -180,6 +184,8 @@ tape( 'the function returns an empty array when an ending index is the first ele
180184
zeros( [ 1, 1, 1, 1, 1 ], { 'dtype': 'complex128' } )
181185
];
182186

187+
/* eslint-enable object-curly-newline, stdlib/line-closing-bracket-spacing */
188+
183189
stop = [
184190
[ 0 ],
185191
[ null, 0 ],

0 commit comments

Comments
 (0)