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

(-)a/QohA/File.pm (-2 / +1 lines)
Lines 99-105 sub check_forbidden_patterns { Link Here
99
sub check_spelling {
99
sub check_spelling {
100
    my ($self) = @_;
100
    my ($self) = @_;
101
101
102
    my $cmd = q{codespell -d } . $self->path;
102
    my $cmd = q{codespell -L Sheat -d } . $self->path;
103
    my ( $success, $error_code, $full_buf, $stdout_buf, $stderr_buf ) = run( command => $cmd, verbose => 0 );
103
    my ( $success, $error_code, $full_buf, $stdout_buf, $stderr_buf ) = run( command => $cmd, verbose => 0 );
104
104
105
    return 0 unless @$full_buf;
105
    return 0 unless @$full_buf;
106
- 

Return to bug 21892