non_constant_identifier_names
使用 lowerCamelCase 命名非常量标识符。
此规则从 Dart 2.0 开始可用。
规则集:core, recommended, flutter
此规则有可用的快速修复。
详情
#应该使用 lowerCamelCase 命名非常量标识符。
类成员、顶级定义、变量、参数、命名参数和命名构造函数应将每个单词的首字母大写(第一个单词除外),并且不使用分隔符。
正确
dart
var item;
HttpRequest httpRequest;
align(clearItems) {
// ...
}
用法
#要启用 non_constant_identifier_names
规则,请在您的 analysis_options.yaml
文件中的 linter > rules 下添加 non_constant_identifier_names
analysis_options.yaml
yaml
linter:
rules:
- non_constant_identifier_names
除非另有说明,否则本网站上的文档反映的是 Dart 3.6.0。页面上次更新时间为 2024-07-03。 查看源代码 或报告问题。