Skip to content

MJ12358/dart-lintz

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Dart Lintz

  • A very strict set of Dart lint rules.

  • Inspired by strictly typed languages like Java and Apex

How to enable these lints

  • Add this to your pubspec.yaml
dev_dependencies:
  dart_lintz: ^1.2.1
  • Add this to your analysis_options.yaml
include: package:dart_lintz/dart_lintz.yaml

How to fix lints

dart fix --dry-run
dart fix --apply --code <the lint to fix>