[doc] Add WatchfaceComplication to the doc index (#587)
[platform/core/csapi/tizenfx.git] / tools / src / GenDummy / .editorconfig
1 # To learn more about .editorconfig see https://aka.ms/editorconfigdocs
2 root = true
3
4 # All files
5 [*]
6 indent_style = space
7
8 # Code files
9 [*.{cs,csx,vb,vbx}]
10 indent_size = 4
11 end_of_line = lf
12
13 # Xml files
14 [*.xml]
15 indent_size = 2
16
17 # Dotnet code style
18 [*.{cs,vb}]
19 # Organize usings
20 dotnet_sort_system_directives_first = true
21
22 # Avoid this. unless absolutely necessary
23 dotnet_style_qualification_for_field = false:suggestion
24 dotnet_style_qualification_for_property = false:suggestion
25 dotnet_style_qualification_for_method = false:suggestion
26 dotnet_style_qualification_for_event = false:suggestion
27
28 # Use language keywords instead of BCL types
29 dotnet_style_predefined_type_for_locals_parameters_members = true:suggestion
30 dotnet_style_predefined_type_for_member_access = true:suggestion
31
32 # Naming conventions
33 dotnet_naming_style.pascal_case_style.capitalization        = pascal_case
34 # Classes, structs, methods, enums, events, properties, namespaces, delegates must be PascalCase
35 dotnet_naming_rule.general_naming.severity                  = suggestion
36 dotnet_naming_rule.general_naming.symbols                   = general
37 dotnet_naming_rule.general_naming.style                     = pascal_case_style
38 dotnet_naming_symbols.general.applicable_kinds              = class,struct,enum,property,method,event,namespace,delegate
39 dotnet_naming_symbols.general.applicable_accessibilities    = *