diff --git a/scripts/get_clang_paths.js b/scripts/get_clang_paths.js
--- a/scripts/get_clang_paths.js
+++ b/scripts/get_clang_paths.js
@@ -6,6 +6,10 @@
     extensions: ['h', 'cpp'],
     excludes: ['_generated'],
   },
+  {
+    path: 'services/lib/src',
+    extensions: ['cpp', 'h'],
+  },
   {
     path: 'services/tunnelbroker/src',
     extensions: ['cpp', 'h'],
diff --git a/services/lib/src/BaseReactor.h b/services/lib/src/BaseReactor.h
--- a/services/lib/src/BaseReactor.h
+++ b/services/lib/src/BaseReactor.h
@@ -22,7 +22,7 @@
   virtual void terminate(const grpc::Status &status) = 0;
   // Validates current values of the reactor's fields.
   virtual void validate() = 0;
-  // Should be called when `OnDone` is called. gRPC calls `OnDone` when there 
+  // Should be called when `OnDone` is called. gRPC calls `OnDone` when there
   // are not going to be more rpc operations.
   virtual void doneCallback() = 0;
   // Should be called when `terminate` is called.
diff --git a/services/lib/src/GlobalTools.cpp b/services/lib/src/GlobalTools.cpp
--- a/services/lib/src/GlobalTools.cpp
+++ b/services/lib/src/GlobalTools.cpp
@@ -6,12 +6,12 @@
 #include <boost/uuid/uuid_generators.hpp>
 #include <boost/uuid/uuid_io.hpp>
 
+#include <algorithm>
 #include <chrono>
 #include <iomanip>
 #include <regex>
 #include <string>
 #include <thread>
-#include <algorithm>
 
 namespace comm {
 namespace network {
diff --git a/services/lib/src/client-base-reactors/ClientBidiReactorBase.h b/services/lib/src/client-base-reactors/ClientBidiReactorBase.h
--- a/services/lib/src/client-base-reactors/ClientBidiReactorBase.h
+++ b/services/lib/src/client-base-reactors/ClientBidiReactorBase.h
@@ -2,8 +2,8 @@
 
 #include "BaseReactor.h"
 
-#include <grpcpp/grpcpp.h>
 #include <glog/logging.h>
+#include <grpcpp/grpcpp.h>
 
 namespace comm {
 namespace network {
diff --git a/services/lib/src/client-base-reactors/ClientReadReactorBase.h b/services/lib/src/client-base-reactors/ClientReadReactorBase.h
--- a/services/lib/src/client-base-reactors/ClientReadReactorBase.h
+++ b/services/lib/src/client-base-reactors/ClientReadReactorBase.h
@@ -2,8 +2,8 @@
 
 #include "BaseReactor.h"
 
-#include <grpcpp/grpcpp.h>
 #include <glog/logging.h>
+#include <grpcpp/grpcpp.h>
 
 namespace comm {
 namespace network {
diff --git a/services/lib/src/client-base-reactors/ClientWriteReactorBase.h b/services/lib/src/client-base-reactors/ClientWriteReactorBase.h
--- a/services/lib/src/client-base-reactors/ClientWriteReactorBase.h
+++ b/services/lib/src/client-base-reactors/ClientWriteReactorBase.h
@@ -2,8 +2,8 @@
 
 #include "BaseReactor.h"
 
-#include <grpcpp/grpcpp.h>
 #include <glog/logging.h>
+#include <grpcpp/grpcpp.h>
 
 namespace comm {
 namespace network {