.editorconfig
author Augie Fackler <augie@google.com>
Fri, 06 Dec 2019 15:15:05 -0500
changeset 43812 bf0453866c80
parent 38281 1d6066336d7b
child 45392 c25efc468a49
permissions -rw-r--r--
fuzz: use a variable to allow specifying python-config to use Eventually we should probably default this to just `python-config` and have the oss-fuzz build.sh script specify the sanpy python-config, but for now this lets us make progress. Differential Revision: https://phab.mercurial-scm.org/D7563

# 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