Skip to content

Commit 477079e

Browse files
Reorganize the header so it's more consistent with my other projects
1 parent 9caa68e commit 477079e

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

diff-so-fancy

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,17 +4,17 @@ my $VERSION = "1.4.1";
44

55
#################################################################################
66

7-
use 5.010; # Require Perl 5.10 for 'state' variables
7+
use v5.010; # Require Perl 5.10 for 'state' variables
8+
use warnings FATAL => 'all';
9+
use strict;
10+
811
use File::Spec; # For catdir
912
use File::Basename; # For dirname
1013
use Encode; # For handling UTF8 stuff
1114
use Cwd qw(abs_path); # For realpath()
1215
use lib dirname(abs_path(File::Spec->catdir($0))) . "/lib"; # Add the local lib/ to @INC
1316
use DiffHighlight;
1417

15-
use strict;
16-
use warnings FATAL => 'all';
17-
1818
my $remove_file_add_header = 1;
1919
my $remove_file_delete_header = 1;
2020
my $clean_permission_changes = 1;

0 commit comments

Comments
 (0)