boolean_lints 2.0.0 copy "boolean_lints: ^2.0.0" to clipboard
boolean_lints: ^2.0.0 copied to clipboard

discontinuedreplaced by: solid_lints

boolean_lints is a developer tool, designed to help stop common issue and simplify repetetive tasks. It adds various warnings with quick fixes and refactoring options.

2.0.0 #

  • Breaking: Migrated to new options format, options are now defined under the custom_lint key.
  • Breaking: Removed boolean_lints.rules_exclude option as it is redundant with the analyzer's exclude option.
  • Raised minimum Dart SDK version to 3.2.0.

Before:

custom_lint:
  rules:
    - banned_code:

boolean_lints:
  rules:
    banned_code:
      severity: info
      include:
        - "lib/.*\\.dart"
      exclude:
        - "lib/.*_temp\\.dart"

After:

custom_lint:
  rules:
    - banned_code:
      severity: info
      include:
        - "lib/**.dart"
      exclude:
        - "lib/**_temp.dart"

1.0.2 #

  • Minor change to readme

1.0.1 #

  • Add example for pub.dev
  • Add API comments for pub.dev

1.0.0 #

  • Initial release with banned_code lint.
2
likes
70
pub points
0%
popularity

Publisher

verified publishergetboolean.dev

boolean_lints is a developer tool, designed to help stop common issue and simplify repetetive tasks. It adds various warnings with quick fixes and refactoring options.

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (license)

Dependencies

analyzer, analyzer_plugin, collection, custom_lint_builder, dart_mappable, glob, meta, path, pub_semver, source_span, yaml

More

Packages that depend on boolean_lints