Use spaces instead of tabs for indentation

This commit is contained in:
Benjamin Renard 2024-10-07 11:17:46 +02:00
parent 1e30357cc3
commit 4bd371ea80
Signed by: bn8
GPG key ID: 3E2E1CE1907115BC
3 changed files with 191 additions and 175 deletions

15
.editorconfig Normal file
View file

@ -0,0 +1,15 @@
root = true
[*]
indent_style = space
indent_size = 4
trim_trailing_whitespace = true
insert_final_newline = true
charset = utf-8
end_of_line = lf
[*.{yaml,yml}]
indent_size = 2
[Makefile]
indent_style = tab

View file

@ -238,3 +238,4 @@ if ( $statusCode eq 'OK' ) {
print "$statusMsg\n";
exit $ERRORS{$statusCode};
# vim:set sw=4 ts=4 sts=4 ft=perl expandtab:

View file

@ -175,4 +175,4 @@ print $per_host_detail;
exit $ERRORS{$statusCode};
# vim:set sw=4 ts=4 sts=4 ft=perl expandtab: