.editorconfig
author Raphaël Gomès <rgomes@octobus.net>
Thu, 07 Nov 2019 10:23:42 +0100
changeset 43603 75fe6e71ddb8
parent 38281 1d6066336d7b
child 45392 c25efc468a49
permissions -rw-r--r--
rust-status: return a ParallelIterator instead of a Vec from stat_dmap_entries This allows the caller function to choose when and how the iteration and/or collection happens. This change also cleans up the now unused `filter_map`. Differential Revision: https://phab.mercurial-scm.org/D7299

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

root = true

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

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

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