mirror of
https://github.com/amalgamated-tools/mirror-to-gitea.git
synced 2025-12-23 22:18:05 -05:00
apply codestyle
This commit is contained in:
@@ -42,8 +42,12 @@ export function configuration() {
|
||||
},
|
||||
dryRun: readBoolean("DRY_RUN"),
|
||||
delay: readInt("DELAY") ?? defaultDelay,
|
||||
include: (readEnv("INCLUDE") ?? defaultInclude).split(",").map(f => f.trim()),
|
||||
exclude: (readEnv("EXCLUDE") ?? defaultExclude).split(",").map(f => f.trim()),
|
||||
include: (readEnv("INCLUDE") ?? defaultInclude)
|
||||
.split(",")
|
||||
.map((f) => f.trim()),
|
||||
exclude: (readEnv("EXCLUDE") ?? defaultExclude)
|
||||
.split(",")
|
||||
.map((f) => f.trim()),
|
||||
singleRun: readBoolean("SINGLE_RUN"),
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user