alt text Developed by 🦏 zoocityboy

ZOO LINTS

ci pub package License: MIT style: zoo lints

This package provides lint rules for Dart and Flutter which are used at zoocityboy's projects. For more information, see the complete list of options.

Note: This package is based on very_good_analysis.

Usage

To use the lints, add a dependency in your pubspec.yaml:

# If you use `package:zoo_lints/zoo_lints.dart`, add a normal dependency.
dependencies:
  zoo_lints: ^3.1.0

# Or, if you just want `analysis_options.yaml`, it can be a dev dependency.
dev_dependencies:
  zoo_lints: ^3.1.0

Then, add an include in analysis_options.yaml:

include: package:zoo_lints/flutter.yaml

This will ensure you always use the latest version of the lints. If you wish to restrict the lint version, specify a version of analysis_options.yaml instead:

include: package:zoo_lints/analysis_options.3.1.0.yaml

Suppressing Lints

There may be cases where specific lint rules are undesirable. Lint rules can be suppressed at the line, file, or project level.

An example use case for suppressing lint rules at the file level is suppressing the prefer_const_constructors in order to achieve 100% code coverage. This is due to the fact that const constructors are executed before the tests are run, resulting in no coverage collection.

Project Level

To suppress a specific lint rule for an entire project, modify analysis_options.yaml:

include: package:zoo_lints/analysis_options.yaml
linter:
  rules:
    public_member_api_docs: false

Badge

To indicate your project is using zoo_lintsstyle: zoo lints

[![style: zoo lints](https://img.shields.io/badge/style-zoo_lints-3EB489.svg)](https://pub-web.flutter-io.cn/packages/zoo_lints)

Libraries

zoo_lints
zoo lints rules for dart analyzer used internally by zoocityboy.