Skip to content

Commit cd6574f

Browse files
committed
style: revert style changes
--- 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: passed - 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: passed - task: lint_javascript_tests status: na - 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: passed - task: lint_typescript_tests status: na - task: lint_license_headers status: passed ---
1 parent b721461 commit cd6574f

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

lib/node_modules/@stdlib/assert/is-accessor-array/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ var bool = isAccessorArray( arr );
7171

7272
## Examples
7373

74-
<!-- eslint-disable object-curly-newline -->
74+
<!-- eslint-disable object-curly-newline, stdlib/eol-open-bracket-spacing, stdlib/line-closing-bracket-spacing -->
7575

7676
<!-- eslint no-undef: "error" -->
7777

@@ -125,10 +125,10 @@ bool = isAccessorArray( new Uint8Array( 10 ) );
125125
bool = isAccessorArray( new Uint8ClampedArray( 10 ) );
126126
// returns false
127127

128-
bool = isAccessorArray({ 'length': 0 });
128+
bool = isAccessorArray( { 'length': 0 } );
129129
// returns false
130130

131-
bool = isAccessorArray({});
131+
bool = isAccessorArray( {} );
132132
// returns false
133133

134134
bool = isAccessorArray( 'beep' );

lib/node_modules/@stdlib/assert/is-accessor-array/examples/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
* limitations under the License.
1717
*/
1818

19-
/* eslint-disable object-curly-newline */
19+
/* eslint-disable object-curly-newline, stdlib/eol-open-bracket-spacing, stdlib/line-closing-bracket-spacing */
2020

2121
'use strict';
2222

lib/node_modules/@stdlib/assert/is-collection/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ var bool = isCollection( [] );
5555

5656
## Examples
5757

58-
<!-- eslint-disable object-curly-newline -->
58+
<!-- eslint-disable object-curly-newline, stdlib/eol-open-bracket-spacing, stdlib/line-closing-bracket-spacing -->
5959

6060
<!-- eslint no-undef: "error" -->
6161

@@ -101,10 +101,10 @@ bool = isCollection( new Uint8Array( 10 ) );
101101
bool = isCollection( new Uint8ClampedArray( 10 ) );
102102
// returns true
103103

104-
bool = isCollection({ 'length': 0 });
104+
bool = isCollection( { 'length': 0 } );
105105
// returns true
106106

107-
bool = isCollection({});
107+
bool = isCollection( {} );
108108
// returns false
109109

110110
bool = isCollection( 'beep' );

lib/node_modules/@stdlib/assert/is-collection/examples/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
* limitations under the License.
1717
*/
1818

19-
/* eslint-disable object-curly-newline */
19+
/* eslint-disable object-curly-newline, stdlib/eol-open-bracket-spacing, stdlib/line-closing-bracket-spacing */
2020

2121
'use strict';
2222

0 commit comments

Comments
 (0)