non_constant_identifier_names
Name non-constant identifiers using lowerCamelCase.
This rule is available as of Dart 2.0.
Rule sets: core, recommended, flutter
This rule has a quick fix available.
Details
#DO name non-constant identifiers using lowerCamelCase.
Class members, top-level definitions, variables, parameters, named parameters and named constructors should capitalize the first letter of each word except the first word, and use no separators.
GOOD:
dart
var item;
HttpRequest httpRequest;
align(clearItems) {
// ...
}
Usage
#To enable the non_constant_identifier_names
rule,
add non_constant_identifier_names
under linter > rules in your
analysis_options.yaml
file:
analysis_options.yaml
yaml
linter:
rules:
- non_constant_identifier_names
除非另有说明,文档之所提及适用于 Dart 3.5.3 版本,本页面最后更新时间: 2024-08-02。 查看文档源码 或者 报告页面问题。