CustomLintConfigs constructor

  1. @internal
const CustomLintConfigs({
  1. required bool? enableAllLintRules,
  2. required bool verbose,
  3. required bool debug,
  4. required Map<String, LintOptions> rules,
})

Configurations representing the custom_lint metadata in the project's analysis_options.yaml.

Implementation

@internal
const CustomLintConfigs({
  required this.enableAllLintRules,
  required this.verbose,
  required this.debug,
  required this.rules,
});