Skip to content

Commit 462f42e

Browse files
authored
style: disable lint rule
Signed-off-by: Athan <kgryte@gmail.com>
1 parent 29d978c commit 462f42e

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

  • lib/node_modules/@stdlib/console/log/examples

lib/node_modules/@stdlib/console/log/examples/index.js

Lines changed: 3 additions & 3 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/line-closing-bracket-spacing */
2020

2121
'use strict';
2222

@@ -30,5 +30,5 @@ log( '%i', 2 );
3030
log( '%.2i', 2.2 );
3131
log( '%f', 3.14 );
3232
log( '%.2f', 4.13 );
33-
log( '%o', { 'foo': 'bar' });
34-
log( '%O', [ 1, 2, 3, 4 ]);
33+
log( '%o', { 'foo': 'bar' } );
34+
log( '%O', [ 1, 2, 3, 4 ] );

0 commit comments

Comments
 (0)