chore: Enable "curly" rule to avoid single-statement if confusion/errors.

This commit is contained in:
cpojer
2026-01-31 16:19:20 +09:00
parent 009b16fab8
commit 5ceff756e1
1266 changed files with 27871 additions and 9393 deletions

View File

@@ -87,7 +87,9 @@ async function sendLinePairingReply(params: {
channel: "line",
id: senderId,
});
if (!created) return;
if (!created) {
return;
}
logVerbose(`line pairing request sender=${senderId}`);
const idLabel = (() => {
try {
@@ -219,7 +221,9 @@ async function handleMessageEvent(event: MessageEvent, context: LineHandlerConte
const { cfg, account, runtime, mediaMaxBytes, processMessage } = context;
const message = event.message;
if (!(await shouldProcessLineEvent(event, context))) return;
if (!(await shouldProcessLineEvent(event, context))) {
return;
}
// Download media if applicable
const allMedia: MediaRef[] = [];
@@ -290,14 +294,18 @@ async function handlePostbackEvent(
const data = event.postback.data;
logVerbose(`line: received postback: ${data}`);
if (!(await shouldProcessLineEvent(event, context))) return;
if (!(await shouldProcessLineEvent(event, context))) {
return;
}
const postbackContext = await buildLinePostbackContext({
event,
cfg: context.cfg,
account: context.account,
});
if (!postbackContext) return;
if (!postbackContext) {
return;
}
await context.processMessage(postbackContext);
}