-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.editorconfig
51 lines (37 loc) · 1.29 KB
/
.editorconfig
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
# Editor configuration, see http://editorconfig.org
root = true
[*]
charset = utf-8
indent_style = space
indent_size = 4
insert_final_newline = true
trim_trailing_whitespace = true
[*.scss]
indent_size = 2
[*.md]
max_line_length = off
trim_trailing_whitespace = false
[*.json]
indent_size = 2
[*.cshtml]
# Some CSS Resharper doesn't know how to load.
resharper_unknown_css_class_highlighting=none
# Some JS Resharper doesn't know how to load.
resharper_undeclared_global_variable_using_highlighting=suggesting
# Some HTML reference Resharper doesn't know how to load.
resharper_html_path_error_highlighting=none
# Allow JS global var.
resharper_use_of_implicit_global_in_function_scope_highlighting=none
# Stop suggesting IE compatibility.
resharper_css_browser_compatibility_highlighting=none
# Localization might not be finished.
resharper_not_overridden_in_specific_culture_highlighting=suggestion
# Allow view render global var.
resharper_access_to_modified_closure_highlighting=suggestion
# Suppress id not resolved because resharper can't understand
resharper_html_id_not_resolved_highlighting=suggestion
[*.cs]
# Allow names like `IPAddress`.
resharper_inconsistent_naming_highlighting=suggestion
# Allow unused auto property get.
resharper_unused_auto_property_accessor_global_highlighting=suggestion