aboutsummaryrefslogtreecommitdiff
path: root/bin
diff options
context:
space:
mode:
authorEuAndreh <eu@euandre.org>2022-10-16 16:30:50 -0300
committerEuAndreh <eu@euandre.org>2022-10-16 16:30:53 -0300
commitf2e1f6851e8268607816f6d175fb235fc4dd3400 (patch)
treea3bd61343fd0a5aa1a9518f25c12ca0ee0e83440 /bin
parentbin/*.pl: Explicitly name the excluded warnings (diff)
downloaddotfiles-f2e1f6851e8268607816f6d175fb235fc4dd3400.tar.gz
dotfiles-f2e1f6851e8268607816f6d175fb235fc4dd3400.tar.xz
bin/*.pl: Do not "use strict" explicitly
Ever since Pelr 5.12 (as in perl5120delta(1)), "use strict" is already done by default. Since all these files do use a number greater than 5.12 (5,34 as of this commit), this "use strict" is redundant.
Diffstat (limited to 'bin')
-rwxr-xr-xbin/nato1
-rwxr-xr-xbin/status-bar1
-rwxr-xr-xbin/uri1
-rwxr-xr-xbin/x1
4 files changed, 0 insertions, 4 deletions
diff --git a/bin/nato b/bin/nato
index 5287acd..a9c21bf 100755
--- a/bin/nato
+++ b/bin/nato
@@ -1,7 +1,6 @@
#!/usr/bin/env perl
use v5.34;
-use strict;
use warnings;
use feature 'signatures';
no warnings ('experimental::signatures');
diff --git a/bin/status-bar b/bin/status-bar
index a96e5ae..bd55b05 100755
--- a/bin/status-bar
+++ b/bin/status-bar
@@ -6,7 +6,6 @@
#
use v5.34;
-use strict;
use warnings;
use feature 'signatures';
no warnings ('experimental::signatures');
diff --git a/bin/uri b/bin/uri
index 77022c9..9b7a61b 100755
--- a/bin/uri
+++ b/bin/uri
@@ -1,7 +1,6 @@
#!/usr/bin/env perl
use v5.34;
-use strict;
use warnings;
use feature 'signatures';
no warnings ('experimental::signatures');
diff --git a/bin/x b/bin/x
index b51ce96..e171061 100755
--- a/bin/x
+++ b/bin/x
@@ -1,7 +1,6 @@
#!/usr/bin/env perl
use v5.34;
-use strict;
use warnings;
use feature 'signatures';
no warnings ('experimental::signatures', 'experimental::smartmatch');