Skip to content

Commit a1ffd44

Browse files
use strictures everywhere
1 parent bda4108 commit a1ffd44

19 files changed

+19
-38
lines changed

lib/JSON/Schema/Tiny.pm

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
use strict;
2-
use warnings;
1+
use strictures 2;
32
package JSON::Schema::Tiny;
43
# vim: set ts=8 sts=2 sw=2 tw=100 et :
54
# ABSTRACT: Validate data against a schema, minimally

t/additional-tests-draft2019-09.t

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
# vim: set ft=perl ts=8 sts=2 sw=2 tw=100 et :
2-
use strict;
3-
use warnings;
2+
use strictures 2;
43
use 5.020;
54
use experimental qw(signatures postderef);
65
no if "$]" >= 5.031009, feature => 'indirect';

t/additional-tests-draft2020-12.t

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
# vim: set ft=perl ts=8 sts=2 sw=2 tw=100 et :
2-
use strict;
3-
use warnings;
2+
use strictures 2;
43
use 5.020;
54
use experimental qw(signatures postderef);
65
no if "$]" >= 5.031009, feature => 'indirect';

t/additional-tests-draft7.t

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
# vim: set ft=perl ts=8 sts=2 sw=2 tw=100 et :
2-
use strict;
3-
use warnings;
2+
use strictures 2;
43
use 5.020;
54
use experimental qw(signatures postderef);
65
no if "$]" >= 5.031009, feature => 'indirect';

t/boolean-data.t

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
use strict;
2-
use warnings;
1+
use strictures 2;
32
use 5.020;
43
use experimental qw(signatures postderef);
54
no if "$]" >= 5.031009, feature => 'indirect';

t/boolean-schemas.t

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
use strict;
2-
use warnings;
1+
use strictures 2;
32
use 5.020;
43
use experimental qw(signatures postderef);
54
no if "$]" >= 5.031009, feature => 'indirect';

t/equality.t

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
use strict;
2-
use warnings;
1+
use strictures 2;
32
use 5.020;
43
use experimental qw(signatures postderef);
54
no if "$]" >= 5.031009, feature => 'indirect';

t/errors.t

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
use strict;
2-
use warnings;
1+
use strictures 2;
32
use 5.020;
43
use experimental qw(signatures postderef);
54
no if "$]" >= 5.031009, feature => 'indirect';

t/lib/Acceptance.pm

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
use strict;
2-
use warnings;
1+
use strictures 2;
32
# no package, so things defined here appear in the namespace of the parent.
43

54
use 5.020;

t/lib/Helper.pm

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
use strict;
2-
use warnings;
1+
use strictures 2;
32
# no package, so things defined here appear in the namespace of the parent.
43

54
use JSON::PP ();

0 commit comments

Comments
 (0)