Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
reduce the use of simcall_process_sleep() -> this_actor::sleep_for()
[simgrid.git] / .editorconfig
1 # http://editorconfig.org
2 root = true
3
4 [*]
5 end_of_line = lf
6 insert_final_newline = true
7
8 [*.{c,cpp,h,hpp,yml,cmake}]
9 trim_trailing_whitespace = true
10 charset = utf-8
11 indent_style = space
12 indent_size = 2
13
14 # PEP8 https://www.python.org/dev/peps/pep-0008/ http://pep8.org/
15 [*.py]
16 trim_trailing_whitespace = true
17 charset = utf-8
18 indent_style = space
19 indent_size = 4
20
21 [Makefile]
22 indent_style = tab