docopslab-dev 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/LICENSE +21 -0
- data/README.adoc +904 -0
- data/assets/config-packs/actionlint/base.yml +13 -0
- data/assets/config-packs/actionlint/project.yml +13 -0
- data/assets/config-packs/htmlproofer/base.yml +27 -0
- data/assets/config-packs/htmlproofer/project.yml +25 -0
- data/assets/config-packs/rubocop/base.yml +130 -0
- data/assets/config-packs/rubocop/project.yml +8 -0
- data/assets/config-packs/shellcheck/base.shellcheckrc +14 -0
- data/assets/config-packs/subtxt/ai-asciidoc-antipatterns.sub.txt +11 -0
- data/assets/config-packs/vale/asciidoc/ExplicitSectionIDs.yml +8 -0
- data/assets/config-packs/vale/asciidoc/ExtraLineBeforeLevel1.yml +7 -0
- data/assets/config-packs/vale/asciidoc/OneSentencePerLine.yml +8 -0
- data/assets/config-packs/vale/asciidoc/PreferSourceBlocks.yml +8 -0
- data/assets/config-packs/vale/asciidoc/ProperAdmonitions.yml +8 -0
- data/assets/config-packs/vale/asciidoc/ProperDLs.yml +7 -0
- data/assets/config-packs/vale/asciidoc/UncleanListStart.yml +8 -0
- data/assets/config-packs/vale/authoring/ButParagraph.yml +8 -0
- data/assets/config-packs/vale/authoring/ExNotEg.yml +8 -0
- data/assets/config-packs/vale/authoring/LiteralTerms.yml +20 -0
- data/assets/config-packs/vale/authoring/Spelling.yml +679 -0
- data/assets/config-packs/vale/base.ini +38 -0
- data/assets/config-packs/vale/config/scripts/ExplicitSectionIDs.tengo +56 -0
- data/assets/config-packs/vale/config/scripts/ExtraLineBeforeLevel1.tengo +121 -0
- data/assets/config-packs/vale/config/scripts/OneSentencePerLine.tengo +53 -0
- data/assets/config-packs/vale/project.ini +5 -0
- data/assets/hooks/pre-commit +63 -0
- data/assets/hooks/pre-push +72 -0
- data/assets/scripts/adoc_section_ids.rb +50 -0
- data/assets/scripts/build-common.sh +193 -0
- data/assets/scripts/build-docker.sh +64 -0
- data/assets/scripts/build.sh +56 -0
- data/assets/scripts/parse_jekyll_asciidoc_logs.rb +467 -0
- data/assets/templates/Gemfile +7 -0
- data/assets/templates/Rakefile +3 -0
- data/assets/templates/gitignore +69 -0
- data/assets/templates/jekyll-asciidoc-fix.prompt.yml +17 -0
- data/assets/templates/spellcheck.prompt.yml +16 -0
- data/docopslab-dev.gemspec +56 -0
- data/docs/agent/AGENTS.md +229 -0
- data/docs/agent/index.md +80 -0
- data/docs/agent/missions/conduct-release.md +224 -0
- data/docs/agent/missions/setup-new-project.md +250 -0
- data/docs/agent/roles/devops-release-engineer.md +152 -0
- data/docs/agent/roles/docops-engineer.md +193 -0
- data/docs/agent/roles/planner-architect.md +74 -0
- data/docs/agent/roles/product-engineer.md +153 -0
- data/docs/agent/roles/product-manager.md +130 -0
- data/docs/agent/roles/project-manager.md +139 -0
- data/docs/agent/roles/qa-testing-engineer.md +115 -0
- data/docs/agent/roles/tech-docs-manager.md +143 -0
- data/docs/agent/roles/tech-writer.md +163 -0
- data/docs/agent/skills/asciidoc.md +609 -0
- data/docs/agent/skills/code-commenting.md +347 -0
- data/docs/agent/skills/fix-broken-links.md +309 -0
- data/docs/agent/skills/fix-jekyll-asciidoc-build-errors.md +23 -0
- data/docs/agent/skills/fix-spelling-issues.md +13 -0
- data/docs/agent/skills/git.md +170 -0
- data/docs/agent/skills/github-issues.md +135 -0
- data/docs/agent/skills/product-release-rollback-and-patching.md +71 -0
- data/docs/agent/skills/rake-cli-dev.md +57 -0
- data/docs/agent/skills/readme-driven-dev.md +13 -0
- data/docs/agent/skills/release-history.md +29 -0
- data/docs/agent/skills/ruby.md +192 -0
- data/docs/agent/skills/schemagraphy-sgyml.md +18 -0
- data/docs/agent/skills/tests-running.md +25 -0
- data/docs/agent/skills/tests-writing.md +45 -0
- data/docs/agent/skills/write-the-docs.md +54 -0
- data/docs/agent/topics/common-project-paths.md +117 -0
- data/docs/agent/topics/dev-tooling-usage.md +202 -0
- data/docs/agent/topics/devops-ci-cd.md +55 -0
- data/docs/agent/topics/product-docs-deployment.md +25 -0
- data/lib/docopslab/dev/auto_fix_asciidoc.rb +46 -0
- data/lib/docopslab/dev/checkers.rb +108 -0
- data/lib/docopslab/dev/config_manager.rb +241 -0
- data/lib/docopslab/dev/file_utils.rb +140 -0
- data/lib/docopslab/dev/git_hooks.rb +140 -0
- data/lib/docopslab/dev/help.rb +121 -0
- data/lib/docopslab/dev/initializer.rb +95 -0
- data/lib/docopslab/dev/linters.rb +451 -0
- data/lib/docopslab/dev/log_parser.rb +31 -0
- data/lib/docopslab/dev/paths.rb +46 -0
- data/lib/docopslab/dev/script_manager.rb +136 -0
- data/lib/docopslab/dev/spell_check.rb +194 -0
- data/lib/docopslab/dev/sync_ops.rb +468 -0
- data/lib/docopslab/dev/tasks.rb +440 -0
- data/lib/docopslab/dev/tool_execution.rb +68 -0
- data/lib/docopslab/dev/version.rb +8 -0
- data/lib/docopslab/dev.rb +392 -0
- data/specs/data/default-manifest.yml +64 -0
- data/specs/data/manifest-schema.yaml +63 -0
- data/specs/data/tasks-def.yml +321 -0
- data/specs/data/tools.yml +60 -0
- metadata +362 -0
|
@@ -0,0 +1,679 @@
|
|
|
1
|
+
#file: noinspection IncorrectFormatting
|
|
2
|
+
---
|
|
3
|
+
extends: spelling
|
|
4
|
+
level: warning
|
|
5
|
+
scope: text
|
|
6
|
+
link: https://docopslab.org/
|
|
7
|
+
message: "Verify the word '%s'. DocOps Lab vocabulary check - not in our technical dictionary."
|
|
8
|
+
# Filters for DocOps Lab specific technical terminology
|
|
9
|
+
# Regex patterns to allow specific words that would otherwise be flagged
|
|
10
|
+
filters:
|
|
11
|
+
# DocOps Lab Project-Specific Terms and Jargon
|
|
12
|
+
- "adocBook"
|
|
13
|
+
- "AsciiDocsy"
|
|
14
|
+
- "clide"
|
|
15
|
+
- "CliGraphy"
|
|
16
|
+
- "demarkupify"
|
|
17
|
+
- "Devtool"
|
|
18
|
+
- "Ditataxis"
|
|
19
|
+
- "docksh"
|
|
20
|
+
- "DocOps"
|
|
21
|
+
- "DocOps Lab"
|
|
22
|
+
- "FormaGraphy"
|
|
23
|
+
- "formy"
|
|
24
|
+
- "hookr"
|
|
25
|
+
- "IMYML"
|
|
26
|
+
- "[iI]ssuer"
|
|
27
|
+
- "liquidoc"
|
|
28
|
+
- "LiquiDoc"
|
|
29
|
+
- "MetaBlog"
|
|
30
|
+
- "MkAdocs"
|
|
31
|
+
- "opathy"
|
|
32
|
+
- "OpenCFGY"
|
|
33
|
+
- "OpenCLY"
|
|
34
|
+
- "OpenFormY"
|
|
35
|
+
- "OpenHXY"
|
|
36
|
+
- "OpenIMY"
|
|
37
|
+
- "OpenPathYML"
|
|
38
|
+
- "OpenSGGY"
|
|
39
|
+
- "OpenVMY"
|
|
40
|
+
- "OPYML"
|
|
41
|
+
- "[pP]asterize(d|s)?"
|
|
42
|
+
- "plusify"
|
|
43
|
+
- "releasehx"
|
|
44
|
+
- "ReleaseHx"
|
|
45
|
+
- "rhyml"
|
|
46
|
+
- "SchemaGraphy"
|
|
47
|
+
- "SGYML"
|
|
48
|
+
- "Sourcerer"
|
|
49
|
+
- "subtxt"
|
|
50
|
+
- "SubTxt"
|
|
51
|
+
- "Versioneer"
|
|
52
|
+
- "VMYML"
|
|
53
|
+
|
|
54
|
+
# General Technical Terms (inherited from RedHat + DocOps additions)
|
|
55
|
+
- "[aA]ccessor"
|
|
56
|
+
- "ACLs"
|
|
57
|
+
- "actionlint"
|
|
58
|
+
- "Adoc"
|
|
59
|
+
- "AGPLv"
|
|
60
|
+
- "[aA]llowlist"
|
|
61
|
+
- "[aA]nsible"
|
|
62
|
+
- "[aA]ntora"
|
|
63
|
+
- "APIs?"
|
|
64
|
+
- "Applixware"
|
|
65
|
+
- "Arcee"
|
|
66
|
+
- "asciidoc"
|
|
67
|
+
- "AsciiDoc"
|
|
68
|
+
- "[aA]sciidoctor"
|
|
69
|
+
- "AssertJ"
|
|
70
|
+
- "Atlassian"
|
|
71
|
+
- "[aA]uto-generate(s|d)?"
|
|
72
|
+
- "[aA]uto-install(s|ed)?"
|
|
73
|
+
- "[aA]utolink(s|ed)?"
|
|
74
|
+
- "[aA]utomounts?"
|
|
75
|
+
- "[aA]utonumber(s|ed)?"
|
|
76
|
+
- "[aA]utostart(s|ed)?"
|
|
77
|
+
- "aws"
|
|
78
|
+
- "AWS"
|
|
79
|
+
- "Azure"
|
|
80
|
+
- "[bB]ackfill(ing|s)?"
|
|
81
|
+
- "[bB]ackground(ed|ing)"
|
|
82
|
+
- "[bB]ackport(ed)?"
|
|
83
|
+
- "[bB]acktrace(s|d)?"
|
|
84
|
+
- "bcrypt"
|
|
85
|
+
- "[bB]indable"
|
|
86
|
+
- "[bB]lockquotes?"
|
|
87
|
+
- "Bitbucket"
|
|
88
|
+
- "[bB]olded"
|
|
89
|
+
- "BOM"
|
|
90
|
+
- "[bB]oolean"
|
|
91
|
+
- "[bB]ootable"
|
|
92
|
+
- "bootc"
|
|
93
|
+
- "[bB]ootstrap"
|
|
94
|
+
- "[bB]reakpoints?"
|
|
95
|
+
- "btn"
|
|
96
|
+
- "Btrfs"
|
|
97
|
+
- "[bB]ugfix(es)?"
|
|
98
|
+
- "Bugzilla"
|
|
99
|
+
- "Buildah"
|
|
100
|
+
- "[bB]ulleting"
|
|
101
|
+
- "[bB]uiltins?"
|
|
102
|
+
- "Bundler"
|
|
103
|
+
- "[cC]allouts?"
|
|
104
|
+
- "[cC]amelCased?"
|
|
105
|
+
- "CentOS"
|
|
106
|
+
- "Ceph"
|
|
107
|
+
- "cephfs"
|
|
108
|
+
- "CDNs?"
|
|
109
|
+
- "cgroup"
|
|
110
|
+
- "[cC]he"
|
|
111
|
+
- "Che-Theia"
|
|
112
|
+
- "[cC]hrony"
|
|
113
|
+
- "Ciphertext"
|
|
114
|
+
- "classloader"
|
|
115
|
+
- "[cC]lassloading"
|
|
116
|
+
- "[cC]lasspath"
|
|
117
|
+
- "CLIs?"
|
|
118
|
+
- "Cloudbursting"
|
|
119
|
+
- "Cloudwashing"
|
|
120
|
+
- "CodeReady"
|
|
121
|
+
- "Codespaces"
|
|
122
|
+
- "[cC]olocate"
|
|
123
|
+
- "[cC]olocation"
|
|
124
|
+
- "[cC]ommand-line interface"
|
|
125
|
+
- "[cC]ommand line"
|
|
126
|
+
- "[cC]onditionalized?"
|
|
127
|
+
- "[cC]omposable"
|
|
128
|
+
- "[cC]onfig"
|
|
129
|
+
- "ConfigMap"
|
|
130
|
+
- "[cC]onfigs?"
|
|
131
|
+
- "[cC]onfigurabili(ty|ties)"
|
|
132
|
+
- "[cC]ontainerd"
|
|
133
|
+
- "Containerfile"
|
|
134
|
+
- "Cookiecutter"
|
|
135
|
+
- "[cC]orequisite"
|
|
136
|
+
- "CPUs?"
|
|
137
|
+
- "CR"
|
|
138
|
+
- "CRD"
|
|
139
|
+
- "CRDs"
|
|
140
|
+
- "CRs"
|
|
141
|
+
- "CSIDriver"
|
|
142
|
+
- "CSINode"
|
|
143
|
+
- "CSVs"
|
|
144
|
+
- "Ctrl"
|
|
145
|
+
- "[cC]ustomizer"
|
|
146
|
+
- "CVEs"
|
|
147
|
+
- "[cC]yberattack"
|
|
148
|
+
- "[cC]ybercrime"
|
|
149
|
+
- "[cC]ybersecurity"
|
|
150
|
+
- "DaemonSet"
|
|
151
|
+
- "dataclass"
|
|
152
|
+
- "dataclasses"
|
|
153
|
+
- "Datadog"
|
|
154
|
+
- "dataloaders?"
|
|
155
|
+
- "[dD]atasource"
|
|
156
|
+
- "[dD]eclaratively"
|
|
157
|
+
- "deliverables"
|
|
158
|
+
- "[dD]ecompiler"
|
|
159
|
+
- "[dD]efragmentation"
|
|
160
|
+
- "Dependabot"
|
|
161
|
+
- "[dD]eserialization"
|
|
162
|
+
- "[dD]eserialize(d)?"
|
|
163
|
+
- "[dD]esynchronize(d)?"
|
|
164
|
+
- "[dD]ev[wW]orkspace"
|
|
165
|
+
- "[dD]evfile"
|
|
166
|
+
- "[dD]evs?"
|
|
167
|
+
- "DevWorkspace"
|
|
168
|
+
- "Dex"
|
|
169
|
+
- "Diátaxis"
|
|
170
|
+
- "[dD]iscoverable"
|
|
171
|
+
- "[dD]iscoverability"
|
|
172
|
+
- "[dD]ismissables?"
|
|
173
|
+
- "[dD]istro"
|
|
174
|
+
- "DLs?"
|
|
175
|
+
- "DNS"
|
|
176
|
+
- "[dD]ocker"
|
|
177
|
+
- "Dockerfiles?"
|
|
178
|
+
- "DocOps"
|
|
179
|
+
- "[dD]ocstrings?"
|
|
180
|
+
- "dotall"
|
|
181
|
+
- "Dotnet"
|
|
182
|
+
- "[dD]ownstream"
|
|
183
|
+
- "[dD]ownstreaming"
|
|
184
|
+
- "[dD]uplicative"
|
|
185
|
+
- "DSLs?"
|
|
186
|
+
- "Endevor"
|
|
187
|
+
- "Endian"
|
|
188
|
+
- "endif"
|
|
189
|
+
- "eServer"
|
|
190
|
+
- "Esprima"
|
|
191
|
+
- "etcd"
|
|
192
|
+
- "Exif"
|
|
193
|
+
- "[eE]xposal"
|
|
194
|
+
- "extranet"
|
|
195
|
+
- "[eE]xtrapartition"
|
|
196
|
+
- "Facter"
|
|
197
|
+
- "[fF]actories"
|
|
198
|
+
- "[fF]actory"
|
|
199
|
+
- "[fF]ailback"
|
|
200
|
+
- "[fF]ailover"
|
|
201
|
+
- "[fF]ailsafe"
|
|
202
|
+
- "Fedora"
|
|
203
|
+
- "Fernflower"
|
|
204
|
+
- "FFmpeg"
|
|
205
|
+
- "[fF]indability"
|
|
206
|
+
- "[fF]inetune"
|
|
207
|
+
- "[fF]inetuning"
|
|
208
|
+
- "firewalld"
|
|
209
|
+
- "Flathub"
|
|
210
|
+
- "Flatpak"
|
|
211
|
+
- "Fluentd"
|
|
212
|
+
- "Flyway"
|
|
213
|
+
- "Fortran"
|
|
214
|
+
- "[fF]rontmatter"
|
|
215
|
+
- "Funqy"
|
|
216
|
+
- "Galera"
|
|
217
|
+
- "[gG]bps"
|
|
218
|
+
- "GCC"
|
|
219
|
+
- "Gemfiles?"
|
|
220
|
+
- "[gG]emspecs?"
|
|
221
|
+
- "[gG]ibibyte"
|
|
222
|
+
- "GIDs"
|
|
223
|
+
- "[gG]it"
|
|
224
|
+
- "gh|GH"
|
|
225
|
+
- "GitHub"
|
|
226
|
+
- "GitLab"
|
|
227
|
+
- "[gG]lobbing"
|
|
228
|
+
- "Gluster"
|
|
229
|
+
- "GNUPro"
|
|
230
|
+
- "GPUs?"
|
|
231
|
+
- "GraalVM"
|
|
232
|
+
- "[gG]radle"
|
|
233
|
+
- "[gG]rafana"
|
|
234
|
+
- "GraphQL"
|
|
235
|
+
- "Graylog"
|
|
236
|
+
- "[gG]rayscale"
|
|
237
|
+
- "greenboot"
|
|
238
|
+
- "gRPC"
|
|
239
|
+
- "GTID"
|
|
240
|
+
- "GUI"
|
|
241
|
+
- "[hH]ardcoding"
|
|
242
|
+
- "Hashicorp"
|
|
243
|
+
- "[hH]eatmap"
|
|
244
|
+
- "[hH]elm"
|
|
245
|
+
- "[hH]ighlight.js"
|
|
246
|
+
- "Homebrew"
|
|
247
|
+
- "[hH]otfix(ing|es)?"
|
|
248
|
+
- "[hH]ostname"
|
|
249
|
+
- "htmlproofer"
|
|
250
|
+
- "HTMLProofer"
|
|
251
|
+
- "htmltest"
|
|
252
|
+
- "http"
|
|
253
|
+
- "HTTP"
|
|
254
|
+
- "https"
|
|
255
|
+
- "HTTPS"
|
|
256
|
+
- "https?"
|
|
257
|
+
- "[hH]yperconverged"
|
|
258
|
+
- "I/O"
|
|
259
|
+
- "IDE"
|
|
260
|
+
- "IDEs"
|
|
261
|
+
- "IKEv"
|
|
262
|
+
- "impactful"
|
|
263
|
+
- "[iI]nferencing"
|
|
264
|
+
- "Infinispan"
|
|
265
|
+
- "[iI]node"
|
|
266
|
+
- "Intelephense"
|
|
267
|
+
- "IntelliJ"
|
|
268
|
+
- "[iI]ntranode"
|
|
269
|
+
- "[iI]ntrapartition"
|
|
270
|
+
- "[iI]ntrarecord"
|
|
271
|
+
- "[iI]ntrasystem"
|
|
272
|
+
- "[iI]nvocable"
|
|
273
|
+
- "IPPool"
|
|
274
|
+
- "IPsec"
|
|
275
|
+
- "IPv"
|
|
276
|
+
- "ISeries"
|
|
277
|
+
- "Istio"
|
|
278
|
+
- "ISVs"
|
|
279
|
+
- "Itanium"
|
|
280
|
+
- "[iI]tem"
|
|
281
|
+
- "Jakarta"
|
|
282
|
+
- "Jandex"
|
|
283
|
+
- "Java"
|
|
284
|
+
- "Jave"
|
|
285
|
+
- "JBang"
|
|
286
|
+
- "JBoss"
|
|
287
|
+
- "[jJ]et[bB]rains"
|
|
288
|
+
- "Jira"
|
|
289
|
+
- "JMESPath"
|
|
290
|
+
- "Jolokia"
|
|
291
|
+
- "[jJ]ournald"
|
|
292
|
+
- "[jJ]ournaling"
|
|
293
|
+
- "Joyent"
|
|
294
|
+
- "JSON"
|
|
295
|
+
- "JSONPath"
|
|
296
|
+
- "JUnit"
|
|
297
|
+
- "jvm"
|
|
298
|
+
- "JVM"
|
|
299
|
+
- "Kafka"
|
|
300
|
+
- "kbd"
|
|
301
|
+
- "[kK]dump"
|
|
302
|
+
- "Kerberos"
|
|
303
|
+
- "[kK]eycloak"
|
|
304
|
+
- "[kK]eylime"
|
|
305
|
+
- "[kK]eyring"
|
|
306
|
+
- "[kK]eyrings"
|
|
307
|
+
- "[kK]eyspace"
|
|
308
|
+
- "keystore"
|
|
309
|
+
- "[kK]eytab"
|
|
310
|
+
- "Kibana"
|
|
311
|
+
- "Knative"
|
|
312
|
+
- "Kogito"
|
|
313
|
+
- "Kompose"
|
|
314
|
+
- "Konflux"
|
|
315
|
+
- "Kramdown"
|
|
316
|
+
- "Kramdoc"
|
|
317
|
+
- "kubelet"
|
|
318
|
+
- "Kubernetes"
|
|
319
|
+
- "Kubespray"
|
|
320
|
+
- "[kK]ustomize"
|
|
321
|
+
- "Kylin"
|
|
322
|
+
- "Laravel"
|
|
323
|
+
- "layernorm"
|
|
324
|
+
- "Let\\'s Encrypt"
|
|
325
|
+
- "LGPLv"
|
|
326
|
+
- "libOSMesa"
|
|
327
|
+
- "librados"
|
|
328
|
+
- "librbd"
|
|
329
|
+
- "Libreswan"
|
|
330
|
+
- "[lL]ibvirt"
|
|
331
|
+
- "[lL]icensor"
|
|
332
|
+
- "Lightspeed"
|
|
333
|
+
- "linearization"
|
|
334
|
+
- "linearize"
|
|
335
|
+
- "Liquibase"
|
|
336
|
+
- "[lL]iquibase"
|
|
337
|
+
- "[lL]iveness"
|
|
338
|
+
- "LLMs?"
|
|
339
|
+
- "Logstash"
|
|
340
|
+
- "Lombok"
|
|
341
|
+
- "[lL]oopback"
|
|
342
|
+
- "Lunr"
|
|
343
|
+
- "Lucide"
|
|
344
|
+
- "[mM]acrostructure"
|
|
345
|
+
- "Makefile"
|
|
346
|
+
- "[mM]anpages?"
|
|
347
|
+
- "[mM]atrixes"
|
|
348
|
+
- "Mattermost"
|
|
349
|
+
- "[mM]aven"
|
|
350
|
+
- "[mM]ebibytes"
|
|
351
|
+
- "[mM]etaclass"
|
|
352
|
+
- "[mM]etafile"
|
|
353
|
+
- "[mM]etamodel"
|
|
354
|
+
- "[mM]etatable"
|
|
355
|
+
- "MicroProfile"
|
|
356
|
+
- "Microsoft"
|
|
357
|
+
- "[mM]iddleware"
|
|
358
|
+
- "[mM]illicores"
|
|
359
|
+
- "[mM]inicourse"
|
|
360
|
+
- "[mM]inidisk"
|
|
361
|
+
- "Minikube"
|
|
362
|
+
- "Minishift"
|
|
363
|
+
- "Mirantis"
|
|
364
|
+
- "[mM]ixin"
|
|
365
|
+
- "[mM]ixins"
|
|
366
|
+
- "Mixtral"
|
|
367
|
+
- "Mockito"
|
|
368
|
+
- "[mM]odularization"
|
|
369
|
+
- "[mM]odularly"
|
|
370
|
+
- "MongoDB"
|
|
371
|
+
- "[mM]onorepos?"
|
|
372
|
+
- "[mM]onospace"
|
|
373
|
+
- "[mM]ulticloud"
|
|
374
|
+
- "[mM]ulticluster"
|
|
375
|
+
- "[mM]ultifactor"
|
|
376
|
+
- "[mM]ultihost"
|
|
377
|
+
- "[mM]ultimodal"
|
|
378
|
+
- "[mM]ultinode"
|
|
379
|
+
- "[mM]ultipath"
|
|
380
|
+
- "[mM]ultipoint"
|
|
381
|
+
- "multischema"
|
|
382
|
+
- "[mM]ultisite"
|
|
383
|
+
- "[mM]ultitable"
|
|
384
|
+
- "[mM]ultitenancy"
|
|
385
|
+
- "[mM]ultitenant"
|
|
386
|
+
- "[mM]ultithread"
|
|
387
|
+
- "[mM]ultitiered"
|
|
388
|
+
- "[mM]ultiuser"
|
|
389
|
+
- "[mM]ultivendor"
|
|
390
|
+
- "[mM]ultizone"
|
|
391
|
+
- "MySQL"
|
|
392
|
+
- "Nagios"
|
|
393
|
+
- "[nN]amespace"
|
|
394
|
+
- "[nN]amerefs?"
|
|
395
|
+
- "[nN]amespaces"
|
|
396
|
+
- "Narayana"
|
|
397
|
+
- "Neoverse"
|
|
398
|
+
- "\\.NET"
|
|
399
|
+
- "NetcoredebugOutput"
|
|
400
|
+
- "Netlify"
|
|
401
|
+
- "Netty"
|
|
402
|
+
- "Newdoc"
|
|
403
|
+
- "NFSv"
|
|
404
|
+
- "Nginx"
|
|
405
|
+
- "[nN]MState"
|
|
406
|
+
- "Node\\.js"
|
|
407
|
+
- "[nN]onheap"
|
|
408
|
+
- "[nN]oninteractive"
|
|
409
|
+
- "[nN]onpaired"
|
|
410
|
+
- "[nN]onsystem"
|
|
411
|
+
- "npm"
|
|
412
|
+
- "NuGet"
|
|
413
|
+
- "Nutanix"
|
|
414
|
+
- "NVMe"
|
|
415
|
+
- "OAS"
|
|
416
|
+
- "OAuth"
|
|
417
|
+
- "objectClass"
|
|
418
|
+
- "OCI"
|
|
419
|
+
- "ocp"
|
|
420
|
+
- "[oO]ffboarding"
|
|
421
|
+
- "[oO]mnichannel"
|
|
422
|
+
- "OmniSharp"
|
|
423
|
+
- "[oO]nboarding"
|
|
424
|
+
- "[oO]neshot"
|
|
425
|
+
- "OpenAI"
|
|
426
|
+
- "OpenAPI"
|
|
427
|
+
- "OpenID"
|
|
428
|
+
- "OpenJDK"
|
|
429
|
+
- "OpenRewrite"
|
|
430
|
+
- "OpenShift"
|
|
431
|
+
- "OpenTelemetry"
|
|
432
|
+
- "OpenTracing"
|
|
433
|
+
- "[oO]perators?"
|
|
434
|
+
- "OSBuild"
|
|
435
|
+
- "osd"
|
|
436
|
+
- "OS(es)?"
|
|
437
|
+
- "OSTree"
|
|
438
|
+
- "OTel"
|
|
439
|
+
- "[oO]verridable"
|
|
440
|
+
- "[oO]verstrike"
|
|
441
|
+
- "Ovis"
|
|
442
|
+
- "Pandoc"
|
|
443
|
+
- "[pP]assthroughs?"
|
|
444
|
+
- "PCIe"
|
|
445
|
+
- "PDF"
|
|
446
|
+
- "performant"
|
|
447
|
+
- "PHP"
|
|
448
|
+
- "PIDs"
|
|
449
|
+
- "[pP]lain-?text"
|
|
450
|
+
- "[pP]luggable"
|
|
451
|
+
- "[pP]odman"
|
|
452
|
+
- "[pP]ostediting"
|
|
453
|
+
- "PostgreSQL"
|
|
454
|
+
- "[pP]ostinstall"
|
|
455
|
+
- "[pP]ostinstallation"
|
|
456
|
+
- "[pP]ostoperation"
|
|
457
|
+
- "[pP]ostrequisite"
|
|
458
|
+
- "PowerShell"
|
|
459
|
+
- "PRDs?"
|
|
460
|
+
- "precache"
|
|
461
|
+
- "[pP]recompile"
|
|
462
|
+
- "[pP]reconfigure(d)?"
|
|
463
|
+
- "[pP]reenrollment"
|
|
464
|
+
- "[pP]reformatted"
|
|
465
|
+
- "[pP]regenerated"
|
|
466
|
+
- "[pP]reinstall"
|
|
467
|
+
- "[pP]reinstallation"
|
|
468
|
+
- "[pP]reoperational"
|
|
469
|
+
- "[pP]repend"
|
|
470
|
+
- "[pP]repended"
|
|
471
|
+
- "[pP]reprocess"
|
|
472
|
+
- "[pP]reprocessor"
|
|
473
|
+
- "[pP]retrained"
|
|
474
|
+
- "[pP]roductized?"
|
|
475
|
+
- "[pP]rofil[er|ing]"
|
|
476
|
+
- "Prometheus"
|
|
477
|
+
- "[pP]roxied"
|
|
478
|
+
- "[pP]seudocode"
|
|
479
|
+
- "[pP]seudorandom"
|
|
480
|
+
- "[pP]seudotext"
|
|
481
|
+
- "[pP]ulldowns?"
|
|
482
|
+
- "[pP]ullquotes?"
|
|
483
|
+
- "PVCs"
|
|
484
|
+
- "Pytorch"
|
|
485
|
+
- "qdmanage"
|
|
486
|
+
- "qdstat"
|
|
487
|
+
- "qeth"
|
|
488
|
+
- "[qQ]uantizable"
|
|
489
|
+
- "[qQ]uantizes"
|
|
490
|
+
- "[qQ]uantizing"
|
|
491
|
+
- "Quarkiverse"
|
|
492
|
+
- "Quarkus"
|
|
493
|
+
- "[qQ]uickstart"
|
|
494
|
+
- "Quiltflower"
|
|
495
|
+
- "Qute"
|
|
496
|
+
- "Rakefiles?"
|
|
497
|
+
- "RamaLama"
|
|
498
|
+
- "[rR]eadonly"
|
|
499
|
+
- "[rR]eauthenticate"
|
|
500
|
+
- "[rR]ebalance"
|
|
501
|
+
- "[rR]ebalances"
|
|
502
|
+
- "[rR]ebalancing"
|
|
503
|
+
- "[rR]ebase"
|
|
504
|
+
- "[rR]ebased"
|
|
505
|
+
- "[rR]ecertification"
|
|
506
|
+
- "[rR]ecertifications"
|
|
507
|
+
- "READMEs?"
|
|
508
|
+
- "Redis"
|
|
509
|
+
- "Redistributions"
|
|
510
|
+
- "[rR]eenabled"
|
|
511
|
+
- "[rR]eentrant"
|
|
512
|
+
- "[rR]efreshable"
|
|
513
|
+
- "[rR]eindex"
|
|
514
|
+
- "[rR]eindexing"
|
|
515
|
+
- "[rR]elicens(ed?|ing)"
|
|
516
|
+
- "relaxngDatatype"
|
|
517
|
+
- "[rR]efram(e|ed|es|ing)"
|
|
518
|
+
- "[rR]epos?"
|
|
519
|
+
- "Reranker"
|
|
520
|
+
- "[rR]eshard"
|
|
521
|
+
- "[rR]esharding"
|
|
522
|
+
- "RESTEasy"
|
|
523
|
+
- "[rR]oadmaps?"
|
|
524
|
+
- "Restic"
|
|
525
|
+
- "[rR]esyncing"
|
|
526
|
+
- "[rR]eusability"
|
|
527
|
+
- "ROCm"
|
|
528
|
+
- "[rR]ollout"
|
|
529
|
+
- "[rR]ollouts"
|
|
530
|
+
- "Rollup"
|
|
531
|
+
- "ROMs"
|
|
532
|
+
- "rootful"
|
|
533
|
+
- "rootless"
|
|
534
|
+
- "[rR]oundtable"
|
|
535
|
+
- "[rR]oundtables"
|
|
536
|
+
- "RPMs"
|
|
537
|
+
- "RSpec"
|
|
538
|
+
- "RDoc"
|
|
539
|
+
- "Redocly"
|
|
540
|
+
- "[rR]ulebook"
|
|
541
|
+
- "[rR]uleset"
|
|
542
|
+
- "[rR]unlevel"
|
|
543
|
+
- "[rR]unlevels"
|
|
544
|
+
- "[rR]untime"
|
|
545
|
+
- "[rR]untimes"
|
|
546
|
+
- "safetensors?"
|
|
547
|
+
- "[sS]andbox(ed|es|ing)?"
|
|
548
|
+
- "sbt"
|
|
549
|
+
- "SCM"
|
|
550
|
+
- "scriptable"
|
|
551
|
+
- "[sS]crollbar"
|
|
552
|
+
- "[sS]earchability"
|
|
553
|
+
- "SELinux"
|
|
554
|
+
- "Semeru"
|
|
555
|
+
- "[sS]erializable"
|
|
556
|
+
- "[sS]erializations?"
|
|
557
|
+
- "[sS]erializers?"
|
|
558
|
+
- "[sS]erverless"
|
|
559
|
+
- "[sS]ervlet"
|
|
560
|
+
- "[sS]etter"
|
|
561
|
+
- "Shadowman"
|
|
562
|
+
- "sharded"
|
|
563
|
+
- "[sS]harding"
|
|
564
|
+
- "[sS]hortcodes?"
|
|
565
|
+
- "[sS]ignup"
|
|
566
|
+
- "[sS]iloed"
|
|
567
|
+
- "Skopeo"
|
|
568
|
+
- "SLAs"
|
|
569
|
+
- "[sS]loppif[y|ied|ies|ication]"
|
|
570
|
+
- "SmallRye"
|
|
571
|
+
- "[sS]moothquant"
|
|
572
|
+
- "[sS]parsification"
|
|
573
|
+
- "[sS]parsified"
|
|
574
|
+
- "[sS]parsify"
|
|
575
|
+
- "Spotify"
|
|
576
|
+
- "SSGs?"
|
|
577
|
+
- "startx"
|
|
578
|
+
- "[sS]tashables?"
|
|
579
|
+
- "STMicroelectronics"
|
|
580
|
+
- "Stratis"
|
|
581
|
+
- "strided"
|
|
582
|
+
- "[sS]trikethroughs?"
|
|
583
|
+
- "[Ss]u"
|
|
584
|
+
- "subaddress"
|
|
585
|
+
- "subcapacity"
|
|
586
|
+
- "[sS]ubcommands?"
|
|
587
|
+
- "[sS]ubmenus?"
|
|
588
|
+
- "[sS]ubnets?"
|
|
589
|
+
- "[sS]ubnetworks?"
|
|
590
|
+
- "[sS]ubpackages?"
|
|
591
|
+
- "[sS]ubpaths?"
|
|
592
|
+
- "[sS]ubsteps?"
|
|
593
|
+
- "subtab"
|
|
594
|
+
- "[sS]ubtests?"
|
|
595
|
+
- "[sS]ubusers?"
|
|
596
|
+
- "[sS]ubvolumes?"
|
|
597
|
+
- "superobject"
|
|
598
|
+
- "SVG"
|
|
599
|
+
- "Symfony"
|
|
600
|
+
- "[sS]yntaxes"
|
|
601
|
+
- "[sS]ysctl"
|
|
602
|
+
- "[sS]yslog"
|
|
603
|
+
- "[sS]ystemd"
|
|
604
|
+
- "Tekton"
|
|
605
|
+
- "[tT]elco"
|
|
606
|
+
- "[tT]emplated"
|
|
607
|
+
- "Temurin"
|
|
608
|
+
- "Tensorflow"
|
|
609
|
+
- "Texinfo"
|
|
610
|
+
- "[tT]extareas?"
|
|
611
|
+
- "[tT]heia"
|
|
612
|
+
- "tokenization"
|
|
613
|
+
- "[tT]okenizers?"
|
|
614
|
+
- "[tT]olerations?"
|
|
615
|
+
- "[tT]oolchains?"
|
|
616
|
+
- "Toolset"
|
|
617
|
+
- "TPUs?"
|
|
618
|
+
- "TWs?"
|
|
619
|
+
- "UIs?"
|
|
620
|
+
- "[tT]raceback"
|
|
621
|
+
- "Traefik"
|
|
622
|
+
- "[tT]ransclu(sion|ded?)"
|
|
623
|
+
- "[tT]ruststore"
|
|
624
|
+
- "Ubuntu"
|
|
625
|
+
- "UIDs"
|
|
626
|
+
- "[uU]mask"
|
|
627
|
+
- "[uU]ncomment"
|
|
628
|
+
- "[uU]ndercloud"
|
|
629
|
+
- "[uU]nderrun"
|
|
630
|
+
- "[uU]nformatted"
|
|
631
|
+
- "[uU]ninstallation"
|
|
632
|
+
- "[uU]nmount"
|
|
633
|
+
- "[uU]nmounting"
|
|
634
|
+
- "[uU]nreviewed"
|
|
635
|
+
- "[uU]pstream(ed|ing)?"
|
|
636
|
+
- "[uU]nreviewed"
|
|
637
|
+
- "[uU]nstaged"
|
|
638
|
+
- "[uU]ntrusted"
|
|
639
|
+
- "[uU]ntracked"
|
|
640
|
+
- "[uU]psell"
|
|
641
|
+
- "[uU]pselling"
|
|
642
|
+
- "URI"
|
|
643
|
+
- "url"
|
|
644
|
+
- "URL"
|
|
645
|
+
- "RuboCop"
|
|
646
|
+
- "Runbooks"
|
|
647
|
+
- "RuboCop"
|
|
648
|
+
- "Vale"
|
|
649
|
+
- "Valgrind"
|
|
650
|
+
- "[vV]alidator"
|
|
651
|
+
- "vCenter"
|
|
652
|
+
- "vDisk"
|
|
653
|
+
- "Velero"
|
|
654
|
+
- "Vercel"
|
|
655
|
+
- "Vert.x"
|
|
656
|
+
- "vHost"
|
|
657
|
+
- "vLLM"
|
|
658
|
+
- "VMs"
|
|
659
|
+
- "VMware"
|
|
660
|
+
- "vsix"
|
|
661
|
+
- "vSphere"
|
|
662
|
+
- "WebAuthn"
|
|
663
|
+
- "Webpack"
|
|
664
|
+
- "WebSocket"
|
|
665
|
+
- "WebView"
|
|
666
|
+
- "Wildfly"
|
|
667
|
+
- "Wordpress"
|
|
668
|
+
- "[wW]rapup"
|
|
669
|
+
- "XString"
|
|
670
|
+
- "YAML"
|
|
671
|
+
- "Yeoman"
|
|
672
|
+
- "Zowe"
|
|
673
|
+
- "Zsh(ell)?"
|
|
674
|
+
- "Zulip"
|
|
675
|
+
|
|
676
|
+
# Non-Technical Terms
|
|
677
|
+
- "doozie"
|
|
678
|
+
- "repurpose"
|
|
679
|
+
- "se"
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
# DocOps Lab Vale Base Configuration
|
|
2
|
+
# This provides sensible defaults for DocOps Lab projects
|
|
3
|
+
|
|
4
|
+
# General settings
|
|
5
|
+
MinAlertLevel = suggestion
|
|
6
|
+
|
|
7
|
+
# DocOps Lab-managed styles
|
|
8
|
+
StylesPath = .vendor/vale/styles
|
|
9
|
+
|
|
10
|
+
# Third-party packages
|
|
11
|
+
Packages = RedHat, AsciiDoc
|
|
12
|
+
|
|
13
|
+
[asciidoctor]
|
|
14
|
+
attribute-missing = drop
|
|
15
|
+
experimental = YES
|
|
16
|
+
safe = unsafe
|
|
17
|
+
|
|
18
|
+
[*]
|
|
19
|
+
BasedOnStyles = RedHat, AsciiDoc, DocOpsLab-AsciiDoc, DocOpsLab-Authoring
|
|
20
|
+
RedHat.PascalCamelCase = suggestion
|
|
21
|
+
RedHat.Headings = suggestion
|
|
22
|
+
RedHat.SentenceLength = suggestion
|
|
23
|
+
RedHat.TermsErrors = suggestion
|
|
24
|
+
RedHat.TermsWarnings = suggestion
|
|
25
|
+
RedHat.Spelling = NO
|
|
26
|
+
RedHat.CaseSensitiveTerms = NO
|
|
27
|
+
RedHat.GitLinks = NO
|
|
28
|
+
RedHat.Using = NO
|
|
29
|
+
RedHat.Slash = suggestion
|
|
30
|
+
RedHat.DoNotUseTerms = suggestion
|
|
31
|
+
RedHat.HeadingPunctuation = NO
|
|
32
|
+
RedHat.Hyphens = suggestion
|
|
33
|
+
|
|
34
|
+
[#.adoc]
|
|
35
|
+
BasedOnStyles = RedHat, AsciiDoc, DocOpsLab-AsciiDoc, DocOpsLab-Authoring
|
|
36
|
+
|
|
37
|
+
# Syntax rule customizations
|
|
38
|
+
RedHat-AsciiDoc.LinkContainsLinkText = suggestion
|