@@ -30,14 +30,14 @@ LuaCodeStyleOptions::LuaCodeStyleOptions()
3030 keep_line_after_local_or_assign_statement(std::make_shared<KeepLineElement>()),
3131 keep_line_after_function_define_statement(std::make_shared<KeepLineElement>(1 )),
3232
33- local_name_define_style(std::make_shared<NameStyleRuleMatcher>()),
34- function_param_name_style(std::make_shared<NameStyleRuleMatcher>()),
35- function_name_define_style(std::make_shared<NameStyleRuleMatcher>()),
36- local_function_name_define_style(std::make_shared<NameStyleRuleMatcher>()),
37- table_field_name_define_style(std::make_shared<NameStyleRuleMatcher>()),
38- global_variable_name_define_style(std::make_shared<NameStyleRuleMatcher>()),
39- module_name_define_style(std::make_shared<NameStyleRuleMatcher>()),
40- require_module_name_style(std::make_shared<NameStyleRuleMatcher>()),
41- class_name_define_style(std::make_shared<NameStyleRuleMatcher>())
33+ local_name_define_style(std::make_shared<NameStyleRuleMatcher>(" Local " )),
34+ function_param_name_style(std::make_shared<NameStyleRuleMatcher>(" Parameters " )),
35+ function_name_define_style(std::make_shared<NameStyleRuleMatcher>(" Class method " )),
36+ local_function_name_define_style(std::make_shared<NameStyleRuleMatcher>(" Local method " )),
37+ table_field_name_define_style(std::make_shared<NameStyleRuleMatcher>(" Table field " )),
38+ global_variable_name_define_style(std::make_shared<NameStyleRuleMatcher>(" Global " )),
39+ module_name_define_style(std::make_shared<NameStyleRuleMatcher>(" Module " )),
40+ require_module_name_style(std::make_shared<NameStyleRuleMatcher>(" Require module " )),
41+ class_name_define_style(std::make_shared<NameStyleRuleMatcher>(" Class " ))
4242{
4343}
0 commit comments