yumemi_lints

Creator: coderz1093

Last updated:

0 purchases

TODO
Add to Cart

Description:

yumemi lints

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
copied to clipboard
2. Setting #
In a terminal, located at the root of your package, run this command:
dart run yumemi_lints update
copied to clipboard
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
copied to clipboard
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
copied to clipboard
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






Kanta Mori






Yamasaki-pan961






trm11tkr






K9i - Kota Hayashi






Ryotaro Onoue

License

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Files:

Customer Reviews

There are no reviews.