Skip to content

Commit ec6dae9

Browse files
committed
style: satisfy prettier rule for arrow-parens
1 parent 09adb32 commit ec6dae9

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/decompile/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,7 @@ async function run() {
139139
taskLib.debug('Getting all matching files from source directory...');
140140
const allFiles = getFilesList(sourceDirectory);
141141
// Filter only .json files to avoid errors with non-json files in the directory
142-
files = allFiles.filter(file => file.toLowerCase().endsWith('.json'));
142+
files = allFiles.filter((file) => file.toLowerCase().endsWith('.json'));
143143
taskLib.debug(`Found ${files.length} .json file(s) out of ${allFiles.length} total file(s)`);
144144
} else if (processingType === ProcessingType.Single && sourceFile) {
145145
files.push(sourceFile);

src/run/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,7 @@ async function run() {
141141
taskLib.debug('Getting all matching files from source directory...');
142142
const allFiles = getFilesList(sourceDirectory);
143143
// Filter only .bicep files to avoid errors with non-bicep files in the directory
144-
files = allFiles.filter(file => file.toLowerCase().endsWith('.bicep'));
144+
files = allFiles.filter((file) => file.toLowerCase().endsWith('.bicep'));
145145
taskLib.debug(`Found ${files.length} .bicep file(s) out of ${allFiles.length} total file(s)`);
146146
} else if (processingType === ProcessingType.Single && sourceFile) {
147147
files.push(sourceFile);

0 commit comments

Comments
 (0)