summaryrefslogtreecommitdiffstats
path: root/src/pybind/mgr/dashboard/.editorconfig
blob: a831e3da186055fc439f2b2cb04abc7e38585375 (plain)
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
# EditorConfig helps developers define and maintain consistent coding styles
# between different editors and IDEs.: http://EditorConfig.org

# top-most EditorConfig file
root = true

# Unix-style newlines with a newline ending every file
[*]
end_of_line = lf
insert_final_newline = true

# Set default charset
[*.{js,py}]
charset = utf-8

# 4 space indentation for Python files
[*.py]
indent_style = space
indent_size = 4

# Indentation override for all JS under frontend directory
[frontend/**.js]
indent_style = space
indent_size = 2

# Indentation override for all HTML under frontend directory
[frontend/**.html]
indent_style = space
indent_size = 2