yumemi_lints 2.1.0 copy "yumemi_lints: ^2.1.0" to clipboard
yumemi_lints: ^2.1.0 copied to clipboard

Customizable Linter library which enforces coding standards and best practice for Flutter/Dart apps, packages and plugins.

melos

Overview #

Provides a set of lint rules recommended by YUMEMI Inc. for Dart and Flutter projects. These rules help enhance code quality and maintainability by ensuring adherence to best practices and style conventions. Follow the steps below to integrate and customize these lint rules into your project.

Usage #

1. Installation #

In a terminal, located at the root of your package, run this command:

dart pub add dev:yumemi_lints

2. Setting #

In a terminal, located at the root of your package, run this command:

dart run yumemi_lints update

The above command will automatically update the lint rules to the recommended.yaml recommended by Yumemi Inc. according to the version of Flutter or Dart SDK used in the project.

This can be used when introducing yumemi_lints or when updating the Flutter or Dart sdk version to avoid the hassle of manually updating lints.

3. Configuration #

Basic

For basic lint rule configuration, include lint rules recommended by YUMEMI Inc. in your analysis_options.yaml file as shown below:

include: package:yumemi_lints/dart/2.17/recommended.yaml

Please note that you need to adjust the file path accordingly based on the Dart or Flutter version your project is using.

Customization

If you want to customize lint rules, include all lint rules in your analysis_options.yaml file as shown below:

include: package:yumemi_lints/dart/2.17/all.yaml

analyzer:
  errors:
    # By including all.yaml, some rules will conflict.
    # These warnings will be addressed within this file.
    included_file_warning: ignore

linter:
  rules:
    # Conflicts with enabling `avoid_types_on_closure_parameters`, `omit_local_variable_types`.
    always_specify_types: false

    # Conflicts with enabling `strict-raw-types`.
    avoid_annotating_with_dynamic: false

    # Conflicts with enabling `prefer_single_quotes`.
    prefer_double_quotes: false

    # Conflicts with enabling `avoid_final_parameters`.
    prefer_final_parameters: false

    # Conflicts with enabling `always_use_package_imports`.
    prefer_relative_imports: false

    # Conflicts with enabling `prefer_final_locals`.
    unnecessary_final: false

In the above example, we have customized various lint rules by adjusting their settings in the analysis_options.yaml file. You can modify these settings according to your project's specific needs and coding style preferences.

How to contribute #

See Contributor Guide for contributing conventions.

Contributors #

blendthink/
blendthink
Kanta
Kanta Mori
Yamasaki-pan961/
Yamasaki-pan961
trm11tkr/
trm11tkr
K9i
K9i - Kota Hayashi
Ryotaro
Ryotaro Onoue
10
likes
140
pub points
53%
popularity

Publisher

verified publisheryumemi.co.jp

Customizable Linter library which enforces coding standards and best practice for Flutter/Dart apps, packages and plugins.

Repository (GitHub)
View/report issues

Topics

#lint #lints #linter #analysis #code-style

Documentation

API reference

License

BSD-3-Clause (LICENSE)

Dependencies

args, file, meta, path, pub_semver, yaml

More

Packages that depend on yumemi_lints