View | Details | Raw Unified | Return to bug 40858
Collapse All | Expand All

(-)a/Koha/Devel/Files.pm (-5 / +5 lines)
Lines 53-59 my $exceptions = { Link Here
53
                misc/cronjobs/build_browser_and_cloud.pl
53
                misc/cronjobs/build_browser_and_cloud.pl
54
            )
54
            )
55
        ],
55
        ],
56
        all => [],
56
        core => [],
57
    },
57
    },
58
    js => {
58
    js => {
59
        tidy => [
59
        tidy => [
Lines 72-78 my $exceptions = { Link Here
72
                koha-tmpl/opac-tmpl/bootstrap/js/Gettext.js
72
                koha-tmpl/opac-tmpl/bootstrap/js/Gettext.js
73
            )
73
            )
74
        ],
74
        ],
75
        all => [
75
        core => [
76
            qw(
76
            qw(
77
                koha-tmpl/intranet-tmpl/lib
77
                koha-tmpl/intranet-tmpl/lib
78
                koha-tmpl/opac-tmpl/lib
78
                koha-tmpl/opac-tmpl/lib
Lines 88-100 my $exceptions = { Link Here
88
            )
88
            )
89
        ],
89
        ],
90
        codespell => [],
90
        codespell => [],
91
        all       => [],
91
        core      => [],
92
    },
92
    },
93
    yml => {
93
    yml => {
94
        all => [],
94
        core => [],
95
    },
95
    },
96
    css => {
96
    css => {
97
        all => [
97
        core => [
98
            qw(
98
            qw(
99
                koha-tmpl/intranet-tmpl/lib
99
                koha-tmpl/intranet-tmpl/lib
100
                koha-tmpl/opac-tmpl/lib
100
                koha-tmpl/opac-tmpl/lib
(-)a/xt/find-missing-new-lines-at-the-end-of-file.t (-2 / +1 lines)
Lines 6-12 use Test::NoWarnings; Link Here
6
6
7
use Koha::Devel::Files;
7
use Koha::Devel::Files;
8
8
9
my $dev_files = Koha::Devel::Files->new( { context => 'all' } );
9
my $dev_files = Koha::Devel::Files->new( { context => 'core' } );
10
my @files;
10
my @files;
11
push @files, $dev_files->ls_perl_files;
11
push @files, $dev_files->ls_perl_files;
12
push @files, $dev_files->ls_tt_files;
12
push @files, $dev_files->ls_tt_files;
13
- 

Return to bug 40858