myple_lint 0.1.0 copy "myple_lint: ^0.1.0" to clipboard
myple_lint: ^0.1.0 copied to clipboard

Lint rules for Dart and Flutter used internally at myple. Based on solidity, performance, and explicit code.

myple lint #

Developed with ❤️ by myple

myple


myple lint APM

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

Note: This package was heavily inspired by pedantic.


Usage #

  1. To use the lints, add a dependency in your pubspec.yaml:
# If you use `package:myple_lint/myple_lint.dart`, add a normal dependency.
dependencies:
  myple_lint: ^0.1.0

# Or, if you just want `analysis_options.yaml`, it can be a dev dependency.
dev_dependencies:
  myple_lint: ^0.1.0
  1. Then, add an include in analysis_options.yaml:
include: package:myple_lint/analysis_options.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:myple/analysis_options.0.1.0.yaml

Suppressing Lints #

There may be cases where specific lint rules are undesirable. Lint rules can be surpressed 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.

Line Level #

To surpress a specific lint rule for a specific line of code, use an ignore comment directly above the line:

// ignore: public_member_api_docs
class A {}

File Level #

To surpress a specific lint rule of a specific file, use an ignore_for_file comment at the top of the file:

// ignore_for_file: public_member_api_docs

class A {}

class B {}

Project Level #

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

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

Badges #

To indicate your project is using myple lint

myple lint

[![myple lint](https://img.shields.io/static/v1?label=style&message=myple&color=blue&style=for-the-badge)](https://pub.dev/publishers/myple.io/packages)

myple lint

[![myple lint](https://img.shields.io/static/v1?label=style&message=myple&color=blue&style=flat-square)](https://pub.dev/publishers/myple.io/packages)

myple lint

[![myple lint](https://img.shields.io/static/v1?label=style&message=myple&color=blue&style=flat)](https://pub.dev/publishers/myple.io/packages)

myple lint

[![myple lint](https://img.shields.io/static/v1?label=style&message=myple&color=blue&style=plastic)](https://pub.dev/publishers/myple.io/packages)

How to contribute #

If you would like to help contribute to this GitHub Action, please see CONTRIBUTING


1
likes
120
pub points
23%
popularity

Publisher

verified publishermyple.io

Lint rules for Dart and Flutter used internally at myple. Based on solidity, performance, and explicit code.

Repository (GitHub)
View/report issues

Documentation

Documentation
API reference

License

MIT (LICENSE)

More

Packages that depend on myple_lint