Skip to content

Commit a27d3e9

Browse files
committed
Fix lint suggestions
1 parent cae6b78 commit a27d3e9

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

src/init-action.ts

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -344,10 +344,16 @@ async function run() {
344344

345345
if (await features.getValue(Feature.CodeqlJavaLombokEnabled)) {
346346
logger.info("Enabling CodeQL Java Lombok support");
347-
core.exportVariable("CODEQL_EXTRACTOR_JAVA_RUN_ANNOTATION_PROCESSORS", "true");
347+
core.exportVariable(
348+
"CODEQL_EXTRACTOR_JAVA_RUN_ANNOTATION_PROCESSORS",
349+
"true",
350+
);
348351
} else {
349352
logger.info("Disabling CodeQL Java Lombok support");
350-
core.exportVariable("CODEQL_EXTRACTOR_JAVA_RUN_ANNOTATION_PROCESSORS", "false");
353+
core.exportVariable(
354+
"CODEQL_EXTRACTOR_JAVA_RUN_ANNOTATION_PROCESSORS",
355+
"false",
356+
);
351357
}
352358

353359
// Disable Python dependency extraction if feature flag set

0 commit comments

Comments
 (0)