You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
ignoreCapitalization: Joi.boolean().description('Search for filenames matching in the lowercase.'),
232
256
inferWorkingDirectory: Joi.string().valid(...Object.values(InferWorkingDirectory)).description('Try to infer the working directory from the main or any script to analyze.'),
233
257
searchPath: Joi.array().items(Joi.string()).description('Additionally search in these paths.'),
234
-
repeatedSourceLimit: Joi.number().optional().description('How often the same file can be sourced within a single run? Please be aware: in case of cyclic sources this may not reach a fixpoint so give this a sensible limit.')
258
+
repeatedSourceLimit: Joi.number().optional().description('How often the same file can be sourced within a single run? Please be aware: in case of cyclic sources this may not reach a fixpoint so give this a sensible limit.'),
259
+
applyReplacements: Joi.array().items(Joi.object()).description('Provide name replacements for loaded files')
235
260
}).optional().description('If lax source calls are active, flowR searches for sourced files much more freely, based on the configurations you give it. This option is only in effect if `ignoreSourceCalls` is set to false.'),
236
261
slicer: Joi.object({
237
262
threshold: Joi.number().optional().description('The maximum number of iterations to perform on a single function call during slicing.')
0 commit comments