标签: meteor naming-conventions eslint
Meteor的Match模式大写,例如。 Match.Any,Match.Optional。
Match
Match.Any
Match.Optional
这违反了所有使用new运算符调用所有大写启动函数的约定,例如。如eslint的new-cap规则所体现的capIsNew为真(默认设置)。
new
new-cap
capIsNew
匹配的约定是什么?