dart-code-metrics
dart-code-metrics copied to clipboard
Software analytics tool that helps developers analyse and improve software quality.
### Rule details This rule should show warning when use `var` on code. The style guide for Flutter indicate to [avoid using var](https://github.com/flutter/flutter/wiki/Style-guide-for-Flutter-repo#avoid-using-var-and-dynamic) on code, so that will be a...
### What rule do you want to change? `no-magic-numbers` ### What change to do you want to make? Generate fewer warnings ### How do you think the change should be...
**Please describe what the rule should do:** Just a tiny rule, recorded here in case someone else is also interested in it :) For example, in https://github.com/mobxjs/mobx.dart, we should use...
**Please describe what the rule should do:** ```dart abstract class A { double get a; set a(double value); } ``` can be written as following: ```dart abstract class A {...