From Code to Community: Sponsoring The Perl and Raku Conference 2025 Learn more

##############################################################################
# $Date: 2008-05-18 18:49:57 -0500 (Sun, 18 May 2008) $
# $Author: clonezone $
# $Revision: 2367 $
##############################################################################
use strict;
use Perl::Critic::Utils qw{ :severities };
use English qw(-no_match_vars);
our $VERSION = '1.083_004';
Readonly::Scalar my $LINE_END => qr/\015{1,2}\012|\012|\015/mxs;
#-----------------------------------------------------------------------------
Readonly::Scalar my $DESC => q{Use the same newline through the source};
Readonly::Scalar my $EXPL => q{Change your newlines to be the same throughout};
#-----------------------------------------------------------------------------
sub supported_parameters { return () }
sub default_severity { return $SEVERITY_HIGH }
sub default_themes { return qw( core bugs ) }
sub applies_to { return 'PPI::Document' }
#-----------------------------------------------------------------------------
sub violates {
my ( $self, undef, $doc ) = @_;
my $filename = $doc->filename();
return if !$filename;
my $fh;
return if !open $fh, '<', $filename;
local $RS = undef;
my $source = <$fh>;
close $fh or return;
my $newline; # undef until we find the first one
my $line = 1;
my @v;
while ( $source =~ m/\G([^\012\015]*)($LINE_END)/cgmxs ) {
my $code = $1;
my $nl = $2;
my $col = length $code;
$newline ||= $nl;
if ( $nl ne $newline ) {
my $token = PPI::Token::Whitespace->new( $nl );
$token->{_location} = [$line, $col, $col];
push @v, $self->violation( $DESC, $EXPL, $token );
}
$line++;
}
return @v;
}
1;
#-----------------------------------------------------------------------------
__END__
=pod
=for stopwords GnuPG
=head1 NAME
Perl::Critic::Policy::CodeLayout::RequireConsistentNewlines - Use the same newline through the source.
=head1 CONFIGURATION
This Policy is not configurable except for the standard options.
=head1 CAVEAT
This policy works outside of PPI because PPI automatically normalizes
source code to local newline conventions. So, this will only work if
we know the filename of the source code.
=head1 AFFILIATION
This Policy is part of the core L<Perl::Critic> distribution.
=head1 DESCRIPTION
Source code files are divided into lines with line endings of C<\r>,
C<\n> or C<\r\n>. Mixing these different line endings causes problems
in many text editors and, notably, Module::Signature and GnuPG.
=head1 AUTHOR
Chris Dolan <cdolan@cpan.org>
=head1 COPYRIGHT
Copyright (C) 2006 Chris Dolan. All rights reserved.
This program is free software; you can redistribute it and/or modify
it under the same terms as Perl itself.
=cut
# Local Variables:
# mode: cperl
# cperl-indent-level: 4
# fill-column: 78
# indent-tabs-mode: nil
# c-indentation-style: bsd
# End:
# ex: set ts=8 sts=4 sw=4 tw=78 ft=perl expandtab shiftround :