blob: 4efa736580fc9c4162930b85ce1118d33dd55005 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
|
#!@AWKEXE@ -f
#
# Dedicated to the Public Domain.
# SPDX-License-Identifier: 0BSD
#
# exception to add: ignore license files.
# exception to add: uref's can go above 79 chars.
# write functions to avoid more text if possible.
BEGIN {
printf "Running basic texinfo linters\n" ;
}
{
if(/\t/) {
printf "...lines containing tabstops?\n" ;
print FILENAME":"NR":"$0 ;
}
}
{
if(length>79) {
printf "...line length over 79 chars?\n" ;
print FILENAME":"NR":"$0 ;
}
}
{
if(/@geq\{\}/) {
printf "...lines containing macros incompatible with old makeinfo?\n" ;
print FILENAME":"NR":"$0 ;
}
}
{
if (/@footnote\{/) {
printf "...lines containing macros incompatible with texi2mdoc?\n" ;
print FILENAME":"NR":"$0 ;
}
}
{
if (/TODO/) {
printf "...lines telling us what is left TODO?\n" ;
print FILENAME":"NR":"$0 ;
}
if (/XXX/) {
printf "...lines telling us what is left to fix?\n" ;
print FILENAME":"NR":"$0 ;
}
}
{
if (/the the/) {
printf "...lines containing a popular typo\n" ;
print FILENAME":"NR":"$0 ;
}
}
|