test(ocpp-server): add tasks to format/lint code
[e-mobility-charging-stations-simulator.git] / .editorconfig
... / ...
CommitLineData
1root = true
2
3[*]
4indent_style = space
5indent_size = 2
6charset = utf-8
7trim_trailing_whitespace = true
8insert_final_newline = true
9end_of_line = lf
10max_line_length = 100
11
12[*.{ts{,x},js{,x},cjs,mjs}]
13quote_type = single
14
15[*.py]
16indent_size = 4
17
18[*.md]
19max_line_length = off
20trim_trailing_whitespace = false
21
22[{Makefile,**.mk}]
23# Use tabs for indentation (Makefiles require tabs)
24indent_style = tab