File tree 2 files changed +30
-34
lines changed
2 files changed +30
-34
lines changed Original file line number Diff line number Diff line change @@ -22,15 +22,14 @@ filters:
22
22
- " [bB]indable"
23
23
- " [bB]oolean"
24
24
- " [bB]ootable"
25
- - " [bB]reakpoint"
26
- - " [bB]reakpoints"
27
- - " [cC]he"
25
+ - " [bB]reakpoint(s)?"
26
+ - ' \b[cC]he\b'
28
27
- " [cC]hrony"
29
28
- " [cC]lassloading"
30
29
- " [cC]lasspath"
31
30
- " [cC]olocate"
32
31
- " [cC]olocation"
33
- - " [cC]onfig"
32
+ - ' \b [cC]onfig\b '
34
33
- " [cC]ontainerd"
35
34
- " [cC]orequisite"
36
35
- " [cC]ustomizer"
@@ -42,11 +41,9 @@ filters:
42
41
- " [dD]ecompiler"
43
42
- " [dD]efragmentation"
44
43
- " [dD]eserialization"
45
- - " [dD]eserialize"
46
- - " [dD]eserialized"
47
- - " [dD]esynchronize"
48
- - " [dD]esynchronized"
49
- - " [dD]ev"
44
+ - " [dD]eserialize(d)?"
45
+ - " [dD]esynchronize(d)?"
46
+ - ' \b[dD]ev\b'
50
47
- " [dD]ev[wW]orkspace"
51
48
- " [dD]evfile"
52
49
- " [dD]istro"
@@ -61,7 +58,7 @@ filters:
61
58
- " [fF]indability"
62
59
- " [gG]bps"
63
60
- " [gG]ibibyte"
64
- - " [gG]it"
61
+ - ' \b [gG]it\b '
65
62
- " [gG]lock"
66
63
- " [gG]radle"
67
64
- " [gG]rafana"
@@ -75,7 +72,7 @@ filters:
75
72
- " [iI]ntrarecord"
76
73
- " [iI]ntrasystem"
77
74
- " [iI]nvocable"
78
- - " [iI]tem"
75
+ - ' \b [iI]tem\b '
79
76
- " [jJ]et[bB]rains"
80
77
- " [jJ]ournald"
81
78
- " [jJ]ournaling"
@@ -143,7 +140,7 @@ filters:
143
140
- " [pP]ostoperation"
144
141
- " [pP]ostrequisite"
145
142
- " [pP]recompile"
146
- - " [pP]reconfigured "
143
+ - " [pP]reconfigure(d)? "
147
144
- " [pP]reenrollment"
148
145
- " [pP]reformatted"
149
146
- " [pP]regenerated"
@@ -197,25 +194,17 @@ filters:
197
194
- " [sS]ervlet"
198
195
- " [sS]etter"
199
196
- " [sS]harding"
200
- - " [Ss]u"
201
- - " [sS]ubcommand"
202
- - " [sS]ubcommands"
203
- - " [sS]ubmenu"
204
- - " [sS]ubmenus"
205
- - " [sS]ubnetwork"
206
- - " [sS]ubnetworks"
207
- - " [sS]ubpackage"
208
- - " [sS]ubpackages"
209
- - " [sS]ubpath"
210
- - " [sS]ubpaths"
211
- - " [sS]ubstep"
212
- - " [sS]ubsteps"
213
- - " [sS]ubtest"
214
- - " [sS]ubtests"
215
- - " [sS]ubuser"
216
- - " [sS]ubusers"
217
- - " [sS]ubvolume"
218
- - " [sS]ubvolumes"
197
+ - ' \b[Ss]u\b'
198
+ - " [sS]ubcommand(s)?"
199
+ - " [sS]ubmenu(s)?"
200
+ - " [sS]ubnet(s)?"
201
+ - " [sS]ubnetwork(s)?"
202
+ - " [sS]ubpackage(s)?"
203
+ - " [sS]ubpath(s)?"
204
+ - " [sS]ubstep(s)?"
205
+ - " [sS]ubtest(s)?"
206
+ - " [sS]ubuser(s)?"
207
+ - " [sS]ubvolume(s)?"
219
208
- " [sS]ysctl"
220
209
- " [sS]yslog"
221
210
- " [sS]ystemd"
@@ -254,6 +243,7 @@ filters:
254
243
- Applixware
255
244
- Asciidoctor
256
245
- AssertJ
246
+ - autoconfigure
257
247
- autolink
258
248
- aws
259
249
- AWS
@@ -406,6 +396,7 @@ filters:
406
396
- Mirantis
407
397
- Mockito
408
398
- MongoDB
399
+ - multischema
409
400
- MySQL
410
401
- Nagios
411
402
- Narayana
@@ -443,6 +434,7 @@ filters:
443
434
- Podman
444
435
- PostgreSQL
445
436
- PowerShell
437
+ - precache
446
438
- Prometheus
447
439
- proxied
448
440
- Pytorch
@@ -479,6 +471,10 @@ filters:
479
471
- startx
480
472
- STMicroelectronics
481
473
- Stratis
474
+ - subaddress
475
+ - subcapacity
476
+ - subtab
477
+ - superobject
482
478
- Suchow
483
479
- SVG
484
480
- Symfony
Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ Rule() {
15
15
VALIDALERTSCOUNT=" $( vale --config=" $DIR /.vale.ini" --no-exit --output=line " $DIR /testvalid.adoc" | wc -l) "
16
16
INVALIDALERTS=" $( vale --config=" $DIR /.vale.ini" --no-exit --output=line " $DIR /testinvalid.adoc" | wc -l) "
17
17
INVALIDLINES=" $( grep -cve ' .+' " $DIR /testinvalid.adoc" || true) "
18
- echo " $INVALIDLINES in .vale/fixtures/RedHat/$RULE /"
18
+ echo " $INVALIDLINES in .vale/fixtures/RedHat/$RULE /"
19
19
INVALIDGAP=$(( INVALIDLINES - INVALIDALERTS))
20
20
if [ " $VALIDALERTSCOUNT " -gt 0 ]
21
21
then
72
72
# This scripts runs the suite for each rule in the `RedHat` style.
73
73
TOTAL=0
74
74
for RULE in $( find .vale/styles/RedHat/ -name ' *.yml' | cut -d/ -f 4 | cut -d. -f1 | sort)
75
- do
75
+ do
76
76
Rule
77
77
done
78
78
79
79
echo " $TOTAL tests to fix"
80
- exit $TOTAL
80
+ exit $TOTAL
You can’t perform that action at this time.
0 commit comments