From 0a402056bcc17f104d909d6a530154ba27d8ba2d Mon Sep 17 00:00:00 2001 From: Victor Zverovich Date: Sat, 20 Jan 2018 19:52:19 -0800 Subject: [PATCH] Add CONTRIBUTING.rst --- CONTRIBUTING.rst | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 CONTRIBUTING.rst diff --git a/CONTRIBUTING.rst b/CONTRIBUTING.rst new file mode 100644 index 00000000..899b6460 --- /dev/null +++ b/CONTRIBUTING.rst @@ -0,0 +1,12 @@ +Contributing to fmt +=================== + +All C++ code must adhere to `Google C++ Style Guide +`_ with the following +exceptions: + +* Exceptions are permitted +* snake_case should be used instead of UpperCamelCase for function and type + names + +Thanks for contributing!