summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--cpanfile1
-rw-r--r--lib/App/BorgRestore.pm3
-rw-r--r--lib/App/BorgRestore/Borg.pm3
-rw-r--r--lib/App/BorgRestore/DB.pm3
-rw-r--r--lib/App/BorgRestore/Helper.pm3
-rw-r--r--lib/App/BorgRestore/PathTimeTable/DB.pm3
-rw-r--r--lib/App/BorgRestore/PathTimeTable/Memory.pm3
-rw-r--r--lib/App/BorgRestore/Settings.pm3
-rwxr-xr-xscript/borg-restore.pl3
-rw-r--r--t/cache_contains_data.t3
-rw-r--r--t/compile.t2
-rw-r--r--t/find_archives.t3
-rw-r--r--t/find_archives_mocked.t3
-rw-r--r--t/handle_added_archives.t3
-rw-r--r--t/handle_added_archives_with_db.t3
-rw-r--r--t/helper/untaint.t3
-rw-r--r--t/pod.t3
-rw-r--r--t/pod_coverage.t3
-rw-r--r--t/search_path.t3
-rw-r--r--t/timespec_to_seconds.t3
20 files changed, 20 insertions, 37 deletions
diff --git a/cpanfile b/cpanfile
index 26ea7cc..8c51b69 100644
--- a/cpanfile
+++ b/cpanfile
@@ -20,6 +20,7 @@ requires 'Pod::Usage';
requires 'Version::Compare';
requires 'autodie';
requires 'perl', 'v5.14.0';
+requires 'strictures';
on configure => sub {
requires 'Devel::CheckBin';
diff --git a/lib/App/BorgRestore.pm b/lib/App/BorgRestore.pm
index 04b563a..f95c71f 100644
--- a/lib/App/BorgRestore.pm
+++ b/lib/App/BorgRestore.pm
@@ -1,7 +1,6 @@
package App::BorgRestore;
use v5.14;
-use strict;
-use warnings;
+use strictures 2;
our $VERSION = "3.1.0";
diff --git a/lib/App/BorgRestore/Borg.pm b/lib/App/BorgRestore/Borg.pm
index 66c5705..62555fa 100644
--- a/lib/App/BorgRestore/Borg.pm
+++ b/lib/App/BorgRestore/Borg.pm
@@ -1,7 +1,6 @@
package App::BorgRestore::Borg;
use v5.14;
-use warnings;
-use strict;
+use strictures 2;
use App::BorgRestore::Helper;
diff --git a/lib/App/BorgRestore/DB.pm b/lib/App/BorgRestore/DB.pm
index 6af14af..010f916 100644
--- a/lib/App/BorgRestore/DB.pm
+++ b/lib/App/BorgRestore/DB.pm
@@ -1,7 +1,6 @@
package App::BorgRestore::DB;
use v5.14;
-use strict;
-use warnings;
+use strictures 2;
use App::BorgRestore::Helper;
diff --git a/lib/App/BorgRestore/Helper.pm b/lib/App/BorgRestore/Helper.pm
index 7e80218..869d4ee 100644
--- a/lib/App/BorgRestore/Helper.pm
+++ b/lib/App/BorgRestore/Helper.pm
@@ -1,7 +1,6 @@
package App::BorgRestore::Helper;
use v5.14;
-use strict;
-use warnings;
+use strictures 2;
use autodie;
use Function::Parameters;
diff --git a/lib/App/BorgRestore/PathTimeTable/DB.pm b/lib/App/BorgRestore/PathTimeTable/DB.pm
index 5d07ebc..1a24999 100644
--- a/lib/App/BorgRestore/PathTimeTable/DB.pm
+++ b/lib/App/BorgRestore/PathTimeTable/DB.pm
@@ -1,6 +1,5 @@
package App::BorgRestore::PathTimeTable::DB;
-use strict;
-use warnings;
+use strictures 2;
use Function::Parameters;
use Log::Any qw($log);
diff --git a/lib/App/BorgRestore/PathTimeTable/Memory.pm b/lib/App/BorgRestore/PathTimeTable/Memory.pm
index 012e937..e84c4a4 100644
--- a/lib/App/BorgRestore/PathTimeTable/Memory.pm
+++ b/lib/App/BorgRestore/PathTimeTable/Memory.pm
@@ -1,7 +1,6 @@
package App::BorgRestore::PathTimeTable::Memory;
use v5.14;
-use strict;
-use warnings;
+use strictures 2;
use Function::Parameters;
diff --git a/lib/App/BorgRestore/Settings.pm b/lib/App/BorgRestore/Settings.pm
index 81c2cac..0d9d015 100644
--- a/lib/App/BorgRestore/Settings.pm
+++ b/lib/App/BorgRestore/Settings.pm
@@ -1,7 +1,6 @@
package App::BorgRestore::Settings;
use v5.14;
-use strict;
-use warnings;
+use strictures 2;
use App::BorgRestore::Helper;
diff --git a/script/borg-restore.pl b/script/borg-restore.pl
index 04f051d..f03fa22 100755
--- a/script/borg-restore.pl
+++ b/script/borg-restore.pl
@@ -1,6 +1,5 @@
#!/usr/bin/perl -T
-use warnings;
-use strict;
+use strictures 2;
=head1 NAME
diff --git a/t/cache_contains_data.t b/t/cache_contains_data.t
index 48832f4..425c875 100644
--- a/t/cache_contains_data.t
+++ b/t/cache_contains_data.t
@@ -1,5 +1,4 @@
-use strict;
-use warnings;
+use strictures 2;
use Log::Any::Adapter ('TAP');
use Test::More;
diff --git a/t/compile.t b/t/compile.t
index 1a7a7a7..191d310 100644
--- a/t/compile.t
+++ b/t/compile.t
@@ -1,4 +1,4 @@
-use strict;
+use strictures 2;
use Test::More 0.98;
use_ok $_ for qw(
diff --git a/t/find_archives.t b/t/find_archives.t
index e49cc2f..b10907e 100644
--- a/t/find_archives.t
+++ b/t/find_archives.t
@@ -1,5 +1,4 @@
-use strict;
-use warnings;
+use strictures 2;
use Log::Any::Adapter ('TAP');
use Test::More;
diff --git a/t/find_archives_mocked.t b/t/find_archives_mocked.t
index a50c308..06e5a6f 100644
--- a/t/find_archives_mocked.t
+++ b/t/find_archives_mocked.t
@@ -1,5 +1,4 @@
-use strict;
-use warnings;
+use strictures 2;
use Log::Any::Adapter ('TAP');
use Test::More;
diff --git a/t/handle_added_archives.t b/t/handle_added_archives.t
index d29c52a..d1dda74 100644
--- a/t/handle_added_archives.t
+++ b/t/handle_added_archives.t
@@ -1,5 +1,4 @@
-use strict;
-use warnings;
+use strictures 2;
use Log::Any::Adapter ('TAP');
use POSIX qw(tzset);
diff --git a/t/handle_added_archives_with_db.t b/t/handle_added_archives_with_db.t
index 677953e..90c359c 100644
--- a/t/handle_added_archives_with_db.t
+++ b/t/handle_added_archives_with_db.t
@@ -1,5 +1,4 @@
-use strict;
-use warnings;
+use strictures 2;
use Log::Any::Adapter ('TAP');
use POSIX qw(tzset);
diff --git a/t/helper/untaint.t b/t/helper/untaint.t
index 73b2c2b..0c2e36a 100644
--- a/t/helper/untaint.t
+++ b/t/helper/untaint.t
@@ -1,5 +1,4 @@
-use strict;
-use warnings;
+use strictures 2;
use Log::Any::Adapter ('TAP');
use Test::More;
diff --git a/t/pod.t b/t/pod.t
index de15747..8da26be 100644
--- a/t/pod.t
+++ b/t/pod.t
@@ -1,5 +1,4 @@
-use strict;
-use warnings;
+use strictures 2;
use Test::More;
use Test::Pod;
diff --git a/t/pod_coverage.t b/t/pod_coverage.t
index fc346af..90a91ab 100644
--- a/t/pod_coverage.t
+++ b/t/pod_coverage.t
@@ -1,5 +1,4 @@
-use strict;
-use warnings;
+use strictures 2;
use Test::More;
use Test::Pod::Coverage;
diff --git a/t/search_path.t b/t/search_path.t
index 247b57f..bf5052f 100644
--- a/t/search_path.t
+++ b/t/search_path.t
@@ -1,5 +1,4 @@
-use strict;
-use warnings;
+use strictures 2;
use Log::Any::Adapter ('TAP');
use Test::More;
diff --git a/t/timespec_to_seconds.t b/t/timespec_to_seconds.t
index 3724682..0f0a77c 100644
--- a/t/timespec_to_seconds.t
+++ b/t/timespec_to_seconds.t
@@ -1,5 +1,4 @@
-use strict;
-use warnings;
+use strictures 2;
use Log::Any::Adapter ('TAP');
use Test::More;