Skip to content

Commit b721461

Browse files
committed
docs: 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 01a25b3 commit b721461

File tree

10 files changed

+15
-15
lines changed

10 files changed

+15
-15
lines changed

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

Lines changed: 2 additions & 2 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,7 +125,7 @@ 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
```
131131

lib/node_modules/@stdlib/array/base/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/array/base/assert/is-booleanarray/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ var bool = isBooleanArray( arr );
6666

6767
## Examples
6868

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

7171
<!-- eslint no-undef: "error" -->
7272

@@ -124,7 +124,7 @@ bool = isBooleanArray( new Uint8Array( 10 ) );
124124
bool = isBooleanArray( new Uint8ClampedArray( 10 ) );
125125
// returns false
126126

127-
bool = isBooleanArray({ 'length': 0 });
127+
bool = isBooleanArray( { 'length': 0 } );
128128
// returns false
129129
```
130130

lib/node_modules/@stdlib/array/base/assert/is-booleanarray/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/array/base/assert/is-complex-typed-array/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ var bool = isComplexTypedArray( arr );
6666

6767
## Examples
6868

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

7171
<!-- eslint no-undef: "error" -->
7272

@@ -120,7 +120,7 @@ bool = isComplexTypedArray( new Uint8Array( 10 ) );
120120
bool = isComplexTypedArray( new Uint8ClampedArray( 10 ) );
121121
// returns false
122122

123-
bool = isComplexTypedArray({ 'length': 0 });
123+
bool = isComplexTypedArray( { 'length': 0 } );
124124
// returns false
125125
```
126126

lib/node_modules/@stdlib/array/base/assert/is-complex-typed-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/array/base/assert/is-complex128array/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ var bool = isComplex128Array( arr );
6666

6767
## Examples
6868

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

7171
<!-- eslint no-undef: "error" -->
7272

@@ -120,7 +120,7 @@ bool = isComplex128Array( new Uint8Array( 10 ) );
120120
bool = isComplex128Array( new Uint8ClampedArray( 10 ) );
121121
// returns false
122122

123-
bool = isComplex128Array({ 'length': 0 });
123+
bool = isComplex128Array( { 'length': 0 } );
124124
// returns false
125125
```
126126

lib/node_modules/@stdlib/array/base/assert/is-complex128array/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/array/base/assert/is-complex64array/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ var bool = isComplex64Array( arr );
6666

6767
## Examples
6868

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

7171
<!-- eslint no-undef: "error" -->
7272

@@ -120,7 +120,7 @@ bool = isComplex64Array( new Uint8Array( 10 ) );
120120
bool = isComplex64Array( new Uint8ClampedArray( 10 ) );
121121
// returns false
122122

123-
bool = isComplex64Array({ 'length': 0 });
123+
bool = isComplex64Array( { 'length': 0 } );
124124
// returns false
125125
```
126126

lib/node_modules/@stdlib/array/base/assert/is-complex64array/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)