Run clang-format on the entire repo

This patch clang-formats the entire repo. Third-party code is
excluded.

I needed to fix up the .clang-format file so that all the header
includes are ordered properly. I could have sworn that it used to work
without the extra modification, but I guess not.

Signed-off-by: Philipp Schrader <philipp.schrader@gmail.com>
Change-Id: I64bb9f2c795401393f9dfe2fefc4f04cb36b52f6
diff --git a/frc971/wpilib/ahal/Compressor.cc b/frc971/wpilib/ahal/Compressor.cc
index ba04e52..97f8af1 100644
--- a/frc971/wpilib/ahal/Compressor.cc
+++ b/frc971/wpilib/ahal/Compressor.cc
@@ -155,7 +155,8 @@
   int32_t status = 0;
   bool value;
 
-  value = HAL_GetCTREPCMCompressorCurrentTooHighFault(m_compressorHandle, &status);
+  value =
+      HAL_GetCTREPCMCompressorCurrentTooHighFault(m_compressorHandle, &status);
 
   if (status) {
     wpi_setWPIError(Timeout);
@@ -179,8 +180,8 @@
   int32_t status = 0;
   bool value;
 
-  value =
-      HAL_GetCTREPCMCompressorCurrentTooHighStickyFault(m_compressorHandle, &status);
+  value = HAL_GetCTREPCMCompressorCurrentTooHighStickyFault(m_compressorHandle,
+                                                            &status);
 
   if (status) {
     wpi_setWPIError(Timeout);
@@ -204,7 +205,8 @@
   int32_t status = 0;
   bool value;
 
-  value = HAL_GetCTREPCMCompressorShortedStickyFault(m_compressorHandle, &status);
+  value =
+      HAL_GetCTREPCMCompressorShortedStickyFault(m_compressorHandle, &status);
 
   if (status) {
     wpi_setWPIError(Timeout);
@@ -247,7 +249,8 @@
   int32_t status = 0;
   bool value;
 
-  value = HAL_GetCTREPCMCompressorNotConnectedStickyFault(m_compressorHandle, &status);
+  value = HAL_GetCTREPCMCompressorNotConnectedStickyFault(m_compressorHandle,
+                                                          &status);
 
   if (status) {
     wpi_setWPIError(Timeout);
@@ -267,7 +270,8 @@
   int32_t status = 0;
   bool value;
 
-  value = HAL_GetCTREPCMCompressorNotConnectedFault(m_compressorHandle, &status);
+  value =
+      HAL_GetCTREPCMCompressorNotConnectedFault(m_compressorHandle, &status);
 
   if (status) {
     wpi_setWPIError(Timeout);