Skip to content

Commit 067d722

Browse files
authored
style: disable lint rule
Signed-off-by: Athan <kgryte@gmail.com>
1 parent 50292da commit 067d722

File tree

1 file changed

+4
-4
lines changed
  • lib/node_modules/@stdlib/assert/is-data-property-in/examples

1 file changed

+4
-4
lines changed

lib/node_modules/@stdlib/assert/is-data-property-in/examples/index.js

Lines changed: 4 additions & 4 deletions
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 */
2020

2121
'use strict';
2222

@@ -26,19 +26,19 @@ var bool = isDataPropertyIn( [ 'a' ], 'length' );
2626
console.log( bool );
2727
// => true
2828

29-
bool = isDataPropertyIn({ 'a': 'b' }, 'a' );
29+
bool = isDataPropertyIn( { 'a': 'b' }, 'a' );
3030
console.log( bool );
3131
// => true
3232

3333
bool = isDataPropertyIn( [ 'a' ], 0 );
3434
console.log( bool );
3535
// => true
3636

37-
bool = isDataPropertyIn({ 'null': false }, null );
37+
bool = isDataPropertyIn( { 'null': false }, null );
3838
console.log( bool );
3939
// => true
4040

41-
bool = isDataPropertyIn({ '[object Object]': false }, {} );
41+
bool = isDataPropertyIn( { '[object Object]': false }, {} );
4242
console.log( bool );
4343
// => true
4444

0 commit comments

Comments
 (0)