LocalizationCheckerConfig constructor
LocalizationCheckerConfig({})
Implementation
LocalizationCheckerConfig({
required this.projectPath,
List<String>? scanPaths,
this.excludeDirs = const [
'build',
'.dart_tool',
'.pub',
'.git',
'test',
'bin'
],
this.excludeFiles = const [],
this.verbose = false,
this.includeComments = false,
this.customUiPatterns = const [],
}) : scanPaths = scanPaths ?? [path.join(projectPath, 'lib')];