curl-curl/scripts/badwords-all
Daniel Stenberg 89d649c482
badwords-all: stop checking source code comments
The code runs under different rules than documentation and these checks
cause too much friction with too little gain.

Leave checking of the public include files since they are almost
documentation.

Closes #21048
2026-03-21 22:58:51 +01:00

15 lines
331 B
Perl
Executable File

#!/usr/bin/env perl
# Copyright (C) Daniel Stenberg, <daniel@haxx.se>, et al.
#
# SPDX-License-Identifier: curl
use strict;
use warnings;
use File::Basename;
chdir dirname(__FILE__) . '/..';
exit system('scripts/badwords', ('scripts/badwords.txt',
'**.md', 'projects/OS400/README.OS400', 'include', 'docs/examples')) >> 8;