Reformat Robot files to follow best practices

Best practices in Robot files consist in using three spaces as
separator and not using tabs. This change updates all files
and includes the checking of the format as part of
`devops-stages/stage-test.sh`. In addition, it checks that files
have no CRLF terminators.

Change-Id: Ie71c2dd92585eba3baf98df0be54f05828819ad8
Signed-off-by: garciadeblas <gerardo.garciadeblas@telefonica.com>
diff --git a/robot-systest/lib/connectivity_lib.robot b/robot-systest/lib/connectivity_lib.robot
index 3db20b8..fed1b23 100644
--- a/robot-systest/lib/connectivity_lib.robot
+++ b/robot-systest/lib/connectivity_lib.robot
@@ -23,13 +23,13 @@
     ...               Execution example:
     ...                  Ping Test   \${host}
 
-    [Arguments]  ${host}
+    [Arguments]   ${host}
 
     ${rc}   ${stdout}=   Run and Return RC and Output   ping -c 2 -W 1 ${host}
     log   ${stdout}
     Should Be Equal As Integers   ${rc}   ${success_return_code}
 
 Test Connectivity
-    [Arguments]  ${host}
+    [Arguments]   ${host}
 
     WAIT UNTIL KEYWORD SUCCEEDS   ${connectivity_max_wait_time}   ${connectivity_pol_time}   Test Ping Host   ${host}