Use spaces instead of tabs for indentation
This commit is contained in:
parent
1e30357cc3
commit
4bd371ea80
3 changed files with 191 additions and 175 deletions
15
.editorconfig
Normal file
15
.editorconfig
Normal 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
|
|
@ -238,3 +238,4 @@ if ( $statusCode eq 'OK' ) {
|
||||||
|
|
||||||
print "$statusMsg\n";
|
print "$statusMsg\n";
|
||||||
exit $ERRORS{$statusCode};
|
exit $ERRORS{$statusCode};
|
||||||
|
# vim:set sw=4 ts=4 sts=4 ft=perl expandtab:
|
||||||
|
|
|
@ -175,4 +175,4 @@ print $per_host_detail;
|
||||||
|
|
||||||
|
|
||||||
exit $ERRORS{$statusCode};
|
exit $ERRORS{$statusCode};
|
||||||
|
# vim:set sw=4 ts=4 sts=4 ft=perl expandtab:
|
||||||
|
|
Loading…
Reference in a new issue