We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9caa68e commit 477079eCopy full SHA for 477079e
diff-so-fancy
@@ -4,17 +4,17 @@ my $VERSION = "1.4.1";
4
5
#################################################################################
6
7
-use 5.010; # Require Perl 5.10 for 'state' variables
+use v5.010; # Require Perl 5.10 for 'state' variables
8
+use warnings FATAL => 'all';
9
+use strict;
10
+
11
use File::Spec; # For catdir
12
use File::Basename; # For dirname
13
use Encode; # For handling UTF8 stuff
14
use Cwd qw(abs_path); # For realpath()
15
use lib dirname(abs_path(File::Spec->catdir($0))) . "/lib"; # Add the local lib/ to @INC
16
use DiffHighlight;
17
-use strict;
-use warnings FATAL => 'all';
-
18
my $remove_file_add_header = 1;
19
my $remove_file_delete_header = 1;
20
my $clean_permission_changes = 1;
0 commit comments