-
Notifications
You must be signed in to change notification settings - Fork 30
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fixed blockly definitions, dropped node16, eslint and minor fixes #455
Conversation
@@ -242,7 +240,7 @@ | |||
ack = undefined; | |||
} | |||
|
|||
if (typeof state !== 'object' || state === null || state === undefined) state = {val: state}; | |||
if (typeof state !== 'object' || state === null || state === undefined) state = { val: state }; |
Check warning
Code scanning / CodeQL
Comparison between inconvertible types Warning test
'undefined'
@@ -279,7 +277,7 @@ | |||
ack = undefined; | |||
} | |||
|
|||
if (typeof state !== 'object' || state === null || state === undefined) state = {val: state}; | |||
if (typeof state !== 'object' || state === null || state === undefined) state = { val: state }; |
Check warning
Code scanning / CodeQL
Comparison between inconvertible types Warning test
'undefined'
@@ -560,7 +558,7 @@ | |||
if (pattern && pattern !== '*') { | |||
params = { | |||
startkey: pattern.replace('*', ''), | |||
endkey: pattern.replace('*', '\u9999') | |||
endkey: pattern.replace('*', '\u9999') |
Check failure
Code scanning / CodeQL
Incomplete string escaping or encoding High test
let adapterName = path.normalize(rootDir).replace(/\\/g, '/').split('/'); | ||
adapterName = adapterName[adapterName.length - 2]; | ||
adapterName = adapterName[adapterName.length - 2]; |
Check warning
Code scanning / CodeQL
Useless assignment to local variable Warning test
No description provided.