editorconfig / editorconfig-visualstudio

EditorConfig Visual Studio Addin
http://editorconfig.org
Other
355 stars 75 forks source link

first word lower #63

Closed bluekuen closed 5 years ago

bluekuen commented 5 years ago

Hello,

i want a rule to make the first word in lower of my method/function names.

I have this block of code:

method names first word lower

dotnet_naming_rule.functions_should_be_camel_case.severity = warning dotnet_naming_rule.functions_should_be_camel_case.symbols = functions dotnet_naming_rule.functions_should_be_camel_case.style = function_style

dotnet_naming_symbols.functions.applicable_kinds = method dotnet_naming_symbols.functions.required_modifiers = dotnet_naming_symbols.functions.applicable_accessibilites =

dotnet_naming_style.function_style.capitalization = camel_case

But it's not working. What am i doing wrong ? Please help.

ffes commented 5 years ago

Your question is about a Microsoft/.NET specific extension to the standard.

See https://docs.microsoft.com/en-us/visualstudio/ide/editorconfig-code-style-settings-reference for more information about their settings. It is well documented is my experience.

bluekuen commented 5 years ago

yes I#m so sorry.