summaryrefslogtreecommitdiff
path: root/.editorconfig
blob: 9fb596fef88a6e75615c9c4451a9384a2efdf62b (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
30
31
32
33
# http://editorconfig.org

[*]
charset = utf-8
end_of_line = lf
trim_trailing_whitespace = true
insert_final_newline = true
indent_style = space
indent_size = 4

[*.py]
max_line_length = 88

[*.{html,json}]
indent_style = space
indent_size = 2
trim_trailing_whitespace = false

[*.{scss,js}]
indent_style = space
indent_size = 2


# Customizations for third party libraries

[static/scss/{font-awesome/*.scss,_font-awesome.scss}]
indent_style = space
indent_size = 2

[static/js/lib/**]
trim_trailing_whitespace = ignore
insert_final_newline = ignore
indent_style = ignore