From 5d2234949d09d9a4c416de0c4e917930c1bf7f15 Mon Sep 17 00:00:00 2001 From: Sam Clegg Date: Wed, 18 Jan 2017 15:20:25 -0800 Subject: Add support for yapf python formatting tool (#276) * Add support for yapf python formatting tool This changs adds .style.yapf to define the python style we are using. I also ran yapf over all the python files: $ yapf -i `git ls-files *.py` Going forward, we should probably add a travis test to prevent regressions. We should probably also switch to more conventional 4-space indentation, which is used by almost everybody outside of Google. --- .style.yapf | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 .style.yapf (limited to '.style.yapf') diff --git a/.style.yapf b/.style.yapf new file mode 100644 index 00000000..282e84c3 --- /dev/null +++ b/.style.yapf @@ -0,0 +1,4 @@ +[style] +split_before_named_assigns = False +based_on_style = chromium +column_limit = 79 -- cgit v1.2.3