在自定义的ESLint规则集合中,您可以强制要求变量名使用驼峰命名(camelCase),同时允许在JSON对象中的属性名使用下划线(_)。例如,以下代码:
var goodObject = { property_name: 1, another_property: 2 };
在使用驼峰命名规则时,可能会出现以下错误:
jshint index.js: line 2, col 0, Identifier 'property_name' is not in camel case.
index.js: line 3, col 0, Identifier 'another_property' is not in camel case.
暂无评论