.editorconfig
author Pulkit Goyal <7895pulkit@gmail.com>
Wed, 02 Sep 2020 19:17:31 +0530
changeset 45409 a28da102fd36
parent 45392 c25efc468a49
permissions -rw-r--r--
extdiff: reorder an if-else conditional This brings continue part on top and will help in next patch where we will like to introduce utility functions for rest of the code.

# See http://EditorConfig.org for the specification

root = true

[*.py]
indent_size = 4
indent_style = space
trim_trailing_whitespace = true
end_of_line = lf

[*.{c,h}]
indent_size = 8
indent_style = tab
trim_trailing_whitespace = true
end_of_line = lf

[*.t]
indent_size = 2
indent_style = space
trim_trailing_whitespace = false
end_of_line = lf