ci: Add lint rule for mandatory curly braces (#9348)
This commit is contained in:
@@ -88,7 +88,7 @@ class ParseServer {
|
||||
if (!Object.prototype.hasOwnProperty.call(ref, key)) {
|
||||
result.push(prefix + key);
|
||||
} else {
|
||||
if (ref[key] === '') continue;
|
||||
if (ref[key] === '') { continue; }
|
||||
let res = [];
|
||||
if (Array.isArray(original[key]) && Array.isArray(ref[key])) {
|
||||
const type = ref[key][0];
|
||||
|
||||
Reference in New Issue
Block a user