Skip to content

Commit 647ef8d

Browse files
committed
try suppressing lint issue
1 parent f3d584b commit 647ef8d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/node_api.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,9 +63,9 @@ struct uv_loop_s; // Forward declaration.
6363
#ifdef NODE_API_MODULE_USE_VTABLE
6464
#define NODE_API_MODULE_SET_VTABLE_DEFINITION \
6565
const node_api_module_vtable* g_node_api_module_vtable = \
66-
NULL; /* NOLINT(readability/null_usage) */ \
66+
NULL; /* NOLINT (readability/null_usage) */ \
6767
const node_api_js_native_vtable* g_node_api_js_native_vtable = \
68-
NULL; /* NOLINT(readability/null_usage) */ \
68+
NULL; /* NOLINT (readability/null_usage) */ \
6969
NAPI_MODULE_EXPORT void NODE_API_MODULE_SET_VTABLE( \
7070
const node_api_module_vtable* module_vtable, \
7171
const node_api_js_native_vtable* js_native_vtable) { \

0 commit comments

Comments
 (0)