gitextract_021vlxez/ ├── .gitattributes ├── .github/ │ ├── CODE_OF_CONDUCT.md │ ├── CONTRIBUTING.md │ ├── ISSUE_TEMPLATE/ │ │ ├── 0_feature_request.yml │ │ └── 1_bug_report.yml │ └── workflows/ │ ├── codeql.yml │ ├── golangci-lint.yml │ └── main.yml ├── .gitignore ├── .gitlab-ci.yml ├── .golangci.yml ├── .goreleaser.yml ├── .pre-commit-hooks.yaml ├── .vale.ini ├── .well-known/ │ └── funding-manifest-urls ├── Dockerfile ├── LICENSE ├── Makefile ├── README.md ├── appveyor.yml ├── cmd/ │ └── vale/ │ ├── api.go │ ├── color.go │ ├── command.go │ ├── common.go │ ├── custom.go │ ├── error.go │ ├── flag.go │ ├── funcs.go │ ├── info.go │ ├── json.go │ ├── library.go │ ├── line.go │ ├── main.go │ ├── main_unix.go │ ├── main_windows.go │ ├── native.go │ ├── pkg_test.go │ ├── sync.go │ └── util.go ├── go.mod ├── go.sum ├── internal/ │ ├── check/ │ │ ├── action.go │ │ ├── capitalization.go │ │ ├── conditional.go │ │ ├── consistency.go │ │ ├── definition.go │ │ ├── doc.go │ │ ├── existence.go │ │ ├── existence_test.go │ │ ├── filter.go │ │ ├── manager.go │ │ ├── manager_test.go │ │ ├── metric.go │ │ ├── occurrence.go │ │ ├── readability.go │ │ ├── repetition.go │ │ ├── scope.go │ │ ├── scope_test.go │ │ ├── script.go │ │ ├── sequence.go │ │ ├── spelling.go │ │ ├── substitution.go │ │ ├── substitution_test.go │ │ ├── variables.go │ │ └── variables_test.go │ ├── core/ │ │ ├── alert.go │ │ ├── config.go │ │ ├── config_test.go │ │ ├── doc.go │ │ ├── error.go │ │ ├── file.go │ │ ├── format.go │ │ ├── ini.go │ │ ├── ini_test.go │ │ ├── location.go │ │ ├── markup.go │ │ ├── source.go │ │ ├── source_test.go │ │ ├── util.go │ │ ├── util_test.go │ │ └── view.go │ ├── glob/ │ │ ├── glob.go │ │ └── glob_test.go │ ├── lint/ │ │ ├── adoc.go │ │ ├── ast.go │ │ ├── code/ │ │ │ ├── c.go │ │ │ ├── comments.go │ │ │ ├── comments_test.go │ │ │ ├── cpp.go │ │ │ ├── css.go │ │ │ ├── go.go │ │ │ ├── java.go │ │ │ ├── jl.go │ │ │ ├── js.go │ │ │ ├── lang.go │ │ │ ├── proto.go │ │ │ ├── py.go │ │ │ ├── query.go │ │ │ ├── rb.go │ │ │ ├── rs.go │ │ │ ├── ts.go │ │ │ ├── tsx.go │ │ │ ├── util.go │ │ │ └── yaml.go │ │ ├── code.go │ │ ├── data.go │ │ ├── dita.go │ │ ├── doc.go │ │ ├── fragment.go │ │ ├── html.go │ │ ├── html_test.go │ │ ├── lint.go │ │ ├── lint_test.go │ │ ├── md.go │ │ ├── mdx.go │ │ ├── metadata.go │ │ ├── org.go │ │ ├── rst.go │ │ ├── util.go │ │ ├── walk.go │ │ ├── xml.go │ │ └── xml_test.go │ ├── nlp/ │ │ ├── doc.go │ │ ├── http.go │ │ ├── prose.go │ │ ├── provider.go │ │ ├── tokenize.go │ │ ├── tokenize_test.go │ │ ├── util.go │ │ └── var.go │ ├── spell/ │ │ ├── LICENSE │ │ ├── aff.go │ │ ├── aff_test.go │ │ ├── data/ │ │ │ ├── en_US-web.aff │ │ │ └── en_US-web.dic │ │ ├── doc.go │ │ ├── gospell.go │ │ ├── multi.go │ │ └── words.go │ └── system/ │ ├── cmd.go │ ├── dir.go │ ├── file.go │ ├── path.go │ ├── path_test.go │ ├── system.go │ ├── walk.go │ └── zip.go └── testdata/ ├── Gemfile ├── comments/ │ ├── in/ │ │ ├── 0.go │ │ ├── 1.rs │ │ ├── 2.py │ │ ├── 3.cpp │ │ ├── 4.js │ │ └── 5.yml │ └── out/ │ ├── 0.json │ ├── 1.json │ ├── 2.json │ ├── 3.json │ ├── 4.json │ └── 5.json ├── features/ │ ├── CLI.feature │ ├── checks.feature │ ├── comments.feature │ ├── config.feature │ ├── fragments.feature │ ├── frontmatter.feature │ ├── lint.feature │ ├── misc.feature │ ├── patterns.feature │ ├── pkg.feature │ ├── scopes.feature │ ├── steps.rb │ ├── styles.feature │ ├── support/ │ │ └── env.rb │ └── views.feature ├── fixtures/ │ ├── XSL/ │ │ └── docbook-xsl-snapshot/ │ │ ├── VERSION.xsl │ │ ├── build.xml │ │ ├── catalog.xml │ │ ├── common/ │ │ │ ├── addns.xsl │ │ │ ├── af.xml │ │ │ ├── am.xml │ │ │ ├── ar.xml │ │ │ ├── as.xml │ │ │ ├── ast.xml │ │ │ ├── autoidx-kimber.xsl │ │ │ ├── autoidx-kosek.xsl │ │ │ ├── az.xml │ │ │ ├── bg.xml │ │ │ ├── bn.xml │ │ │ ├── bn_in.xml │ │ │ ├── bs.xml │ │ │ ├── build.xml │ │ │ ├── ca.xml │ │ │ ├── charmap.xml │ │ │ ├── charmap.xsl │ │ │ ├── common.xml │ │ │ ├── common.xsl │ │ │ ├── cs.xml │ │ │ ├── cy.xml │ │ │ ├── da.xml │ │ │ ├── de.xml │ │ │ ├── el.xml │ │ │ ├── en.xml │ │ │ ├── entities.ent │ │ │ ├── eo.xml │ │ │ ├── es.xml │ │ │ ├── et.xml │ │ │ ├── eu.xml │ │ │ ├── fa.xml │ │ │ ├── fi.xml │ │ │ ├── fr.xml │ │ │ ├── ga.xml │ │ │ ├── gentext.xsl │ │ │ ├── gl.xml │ │ │ ├── gu.xml │ │ │ ├── he.xml │ │ │ ├── hi.xml │ │ │ ├── hr.xml │ │ │ ├── hu.xml │ │ │ ├── id.xml │ │ │ ├── insertfile.xsl │ │ │ ├── is.xml │ │ │ ├── it.xml │ │ │ ├── ja.xml │ │ │ ├── ka.xml │ │ │ ├── kn.xml │ │ │ ├── ko.xml │ │ │ ├── ky.xml │ │ │ ├── l10n.dtd │ │ │ ├── l10n.xml │ │ │ ├── l10n.xsl │ │ │ ├── la.xml │ │ │ ├── labels.xsl │ │ │ ├── lt.xml │ │ │ ├── lv.xml │ │ │ ├── ml.xml │ │ │ ├── mn.xml │ │ │ ├── mr.xml │ │ │ ├── nb.xml │ │ │ ├── nds.xml │ │ │ ├── nl.xml │ │ │ ├── nn.xml │ │ │ ├── olink.xsl │ │ │ ├── or.xml │ │ │ ├── pa.xml │ │ │ ├── pi.xml │ │ │ ├── pi.xsl │ │ │ ├── pl.xml │ │ │ ├── pt.xml │ │ │ ├── pt_br.xml │ │ │ ├── refentry.xml │ │ │ ├── refentry.xsl │ │ │ ├── ro.xml │ │ │ ├── ru.xml │ │ │ ├── sk.xml │ │ │ ├── sl.xml │ │ │ ├── sq.xml │ │ │ ├── sr.xml │ │ │ ├── sr_Latn.xml │ │ │ ├── stripns.xsl │ │ │ ├── subtitles.xsl │ │ │ ├── sv.xml │ │ │ ├── ta.xml │ │ │ ├── table.xsl │ │ │ ├── targetdatabase.dtd │ │ │ ├── targets.xsl │ │ │ ├── te.xml │ │ │ ├── th.xml │ │ │ ├── titles.xsl │ │ │ ├── tl.xml │ │ │ ├── tr.xml │ │ │ ├── uk.xml │ │ │ ├── ur.xml │ │ │ ├── utility.xml │ │ │ ├── utility.xsl │ │ │ ├── vi.xml │ │ │ ├── xh.xml │ │ │ ├── zh.xml │ │ │ ├── zh_cn.xml │ │ │ └── zh_tw.xml │ │ ├── html/ │ │ │ ├── admon.xsl │ │ │ ├── annotations.xsl │ │ │ ├── autoidx-kimber.xsl │ │ │ ├── autoidx-kosek.xsl │ │ │ ├── autoidx-ng.xsl │ │ │ ├── autoidx.xsl │ │ │ ├── autotoc.xsl │ │ │ ├── biblio-iso690.xsl │ │ │ ├── biblio.xsl │ │ │ ├── block.xsl │ │ │ ├── build.xml │ │ │ ├── callout.xsl │ │ │ ├── changebars.xsl │ │ │ ├── chunk-changebars.xsl │ │ │ ├── chunk-code.xsl │ │ │ ├── chunk-common.xsl │ │ │ ├── chunk.xsl │ │ │ ├── chunker.xsl │ │ │ ├── chunkfast.xsl │ │ │ ├── chunktoc.xsl │ │ │ ├── component.xsl │ │ │ ├── division.xsl │ │ │ ├── docbook.css.xml │ │ │ ├── docbook.xsl │ │ │ ├── ebnf.xsl │ │ │ ├── footnote.xsl │ │ │ ├── formal.xsl │ │ │ ├── glossary.xsl │ │ │ ├── graphics.xsl │ │ │ ├── highlight.xsl │ │ │ ├── html-rtf.xsl │ │ │ ├── html.xsl │ │ │ ├── htmltbl.xsl │ │ │ ├── index.xsl │ │ │ ├── info.xsl │ │ │ ├── inline.xsl │ │ │ ├── its.xsl │ │ │ ├── keywords.xsl │ │ │ ├── lists.xsl │ │ │ ├── maketoc.xsl │ │ │ ├── manifest.xsl │ │ │ ├── math.xsl │ │ │ ├── oldchunker.xsl │ │ │ ├── onechunk.xsl │ │ │ ├── param.xml │ │ │ ├── param.xsl │ │ │ ├── pi.xml │ │ │ ├── pi.xsl │ │ │ ├── profile-chunk-code.xsl │ │ │ ├── profile-chunk.xsl │ │ │ ├── profile-docbook.xsl │ │ │ ├── profile-onechunk.xsl │ │ │ ├── publishers.xsl │ │ │ ├── qandaset.xsl │ │ │ ├── refentry.xsl │ │ │ ├── sections.xsl │ │ │ ├── synop.xsl │ │ │ ├── table.xsl │ │ │ ├── task.xsl │ │ │ ├── titlepage.templates.xml │ │ │ ├── titlepage.templates.xsl │ │ │ ├── titlepage.xsl │ │ │ ├── toc.xsl │ │ │ ├── verbatim.xsl │ │ │ └── xref.xsl │ │ └── lib/ │ │ ├── build.xml │ │ └── lib.xsl │ ├── YAML/ │ │ ├── NoExtends.yml │ │ └── NoMsg.yml │ ├── actions/ │ │ ├── .vale.ini │ │ ├── script.json │ │ └── spell.json │ ├── benchmarks/ │ │ ├── bench.md │ │ └── bench.rst │ ├── checks/ │ │ ├── Capitalization/ │ │ │ ├── .vale.ini │ │ │ ├── test.md │ │ │ ├── test2.md │ │ │ ├── test3.md │ │ │ └── test4.md │ │ ├── Conditional/ │ │ │ ├── .vale.ini │ │ │ └── test.md │ │ ├── Existence/ │ │ │ ├── .vale.ini │ │ │ ├── test.md │ │ │ └── test2.md │ │ ├── Metric/ │ │ │ ├── .vale.ini │ │ │ ├── frontmatter.md │ │ │ └── test.md │ │ ├── Occurrence/ │ │ │ ├── .vale.ini │ │ │ ├── test.md │ │ │ ├── test2.md │ │ │ └── test3.md │ │ ├── Repetition/ │ │ │ ├── _vale │ │ │ ├── test.md │ │ │ └── text.rst │ │ ├── Script/ │ │ │ ├── .vale.ini │ │ │ └── test.md │ │ ├── SentenceCase/ │ │ │ ├── .vale.ini │ │ │ ├── test.html │ │ │ └── test.md │ │ ├── Sequence/ │ │ │ ├── .vale.ini │ │ │ ├── test.adoc │ │ │ ├── test.md │ │ │ └── test.txt │ │ ├── Spelling/ │ │ │ ├── .vale.ini │ │ │ ├── test.md │ │ │ └── test.org │ │ └── Substitution/ │ │ ├── .vale.ini │ │ ├── test.md │ │ └── test2.md │ ├── comments/ │ │ ├── .vale.ini │ │ ├── test.adoc │ │ ├── test.md │ │ ├── test.mdx │ │ ├── test.org │ │ ├── test.rst │ │ └── test2.mdx │ ├── configs/ │ │ ├── .vale.ini │ │ ├── ini/ │ │ │ ├── .vale.ini │ │ │ └── styles/ │ │ │ ├── Joblint/ │ │ │ │ ├── Acronyms.yml │ │ │ │ ├── Benefits.yml │ │ │ │ ├── Bro.yml │ │ │ │ ├── Competitive.yml │ │ │ │ ├── Derogatory.yml │ │ │ │ ├── DevEnv.yml │ │ │ │ ├── DumbTitles.yml │ │ │ │ ├── Gendered.yml │ │ │ │ ├── Hair.yml │ │ │ │ ├── LegacyTech.yml │ │ │ │ ├── Meritocracy.yml │ │ │ │ ├── Profanity.yml │ │ │ │ ├── README.md │ │ │ │ ├── Reassure.yml │ │ │ │ ├── Sexualised.yml │ │ │ │ ├── Starter.yml │ │ │ │ ├── TechTerms.yml │ │ │ │ ├── Visionary.yml │ │ │ │ └── meta.json │ │ │ └── proselint/ │ │ │ ├── Airlinese.yml │ │ │ ├── AnimalLabels.yml │ │ │ ├── Annotations.yml │ │ │ ├── Apologizing.yml │ │ │ ├── Archaisms.yml │ │ │ ├── But.yml │ │ │ ├── Cliches.yml │ │ │ ├── CorporateSpeak.yml │ │ │ ├── Currency.yml │ │ │ ├── Cursing.yml │ │ │ ├── DateCase.yml │ │ │ ├── DateMidnight.yml │ │ │ ├── DateRedundancy.yml │ │ │ ├── DateSpacing.yml │ │ │ ├── DenizenLabels.yml │ │ │ ├── Diacritical.yml │ │ │ ├── GenderBias.yml │ │ │ ├── GroupTerms.yml │ │ │ ├── Hedging.yml │ │ │ ├── Hyperbole.yml │ │ │ ├── Illusions.yml │ │ │ ├── Jargon.yml │ │ │ ├── LGBTOffensive.yml │ │ │ ├── LGBTTerms.yml │ │ │ ├── Malapropisms.yml │ │ │ ├── Needless.yml │ │ │ ├── Nonwords.yml │ │ │ ├── Oxymorons.yml │ │ │ ├── P-Value.yml │ │ │ ├── RASSyndrome.yml │ │ │ ├── README.md │ │ │ ├── Skunked.yml │ │ │ ├── Spelling.yml │ │ │ ├── Typography.yml │ │ │ ├── Uncomparables.yml │ │ │ ├── Very.yml │ │ │ └── meta.json │ │ └── test.md │ ├── filters/ │ │ ├── .vale.ini │ │ └── test.md │ ├── folders/ │ │ └── .vale.ini │ ├── formats/ │ │ ├── .vale.ini │ │ ├── adoc/ │ │ │ ├── .vale.ini │ │ │ ├── styles/ │ │ │ │ └── Test/ │ │ │ │ ├── Rule.yml │ │ │ │ └── Rule2.yml │ │ │ ├── test.adoc │ │ │ ├── test2.adoc │ │ │ └── test3.adoc │ │ ├── rst/ │ │ │ ├── .vale.ini │ │ │ ├── styles/ │ │ │ │ └── Test/ │ │ │ │ └── Rule.yml │ │ │ └── test.rst │ │ ├── subdir1/ │ │ │ ├── test.hs │ │ │ └── test.rs │ │ ├── subdir2/ │ │ │ └── test.lua │ │ ├── subdir3/ │ │ │ ├── .vale.ini │ │ │ └── test.mdx │ │ ├── test.adoc │ │ ├── test.cc │ │ ├── test.clj │ │ ├── test.css │ │ ├── test.dita │ │ ├── test.hs │ │ ├── test.java │ │ ├── test.jl │ │ ├── test.json │ │ ├── test.jsx │ │ ├── test.lua │ │ ├── test.md │ │ ├── test.mdx │ │ ├── test.org │ │ ├── test.php │ │ ├── test.proto │ │ ├── test.ps1 │ │ ├── test.py │ │ ├── test.r │ │ ├── test.rb │ │ ├── test.rs │ │ ├── test.rst │ │ ├── test.ts │ │ ├── test.txt │ │ ├── test.xml │ │ ├── test.xyz │ │ └── test.yml │ ├── fragments/ │ │ ├── .vale.ini │ │ ├── styles/ │ │ │ └── config/ │ │ │ └── vocabularies/ │ │ │ └── Base/ │ │ │ ├── accept.txt │ │ │ └── reject.txt │ │ ├── test.cc │ │ ├── test.go │ │ ├── test.js │ │ ├── test.py │ │ ├── test.rb │ │ ├── test.rs │ │ ├── test2.py │ │ └── test2.rs │ ├── frontmatter/ │ │ ├── .vale.ini │ │ ├── test.adoc │ │ ├── test.md │ │ ├── test.rst │ │ ├── test2.md │ │ ├── test2.mdx │ │ ├── test3.md │ │ └── test3.mdx │ ├── glob/ │ │ ├── .vale.ini │ │ └── content/ │ │ ├── a.md │ │ ├── b/ │ │ │ └── b.md │ │ └── c.md │ ├── i18n/ │ │ ├── .vale.ini │ │ ├── ru.adoc │ │ └── zh.md │ ├── misc/ │ │ ├── duplicates/ │ │ │ ├── .vale │ │ │ ├── test.adoc │ │ │ ├── test.md │ │ │ └── test2.md │ │ ├── filesystem/ │ │ │ └── projects/ │ │ │ ├── .vale.ini │ │ │ ├── ini/ │ │ │ │ ├── .vale.ini │ │ │ │ └── styles/ │ │ │ │ ├── Microsoft/ │ │ │ │ │ └── Headings.yml │ │ │ │ └── Vocab/ │ │ │ │ └── Basic/ │ │ │ │ ├── accept.txt │ │ │ │ ├── reject.txt │ │ │ │ └── vocab.txt │ │ │ └── test.md │ │ ├── ids/ │ │ │ ├── .vale.ini │ │ │ ├── test.adoc │ │ │ └── test2.adoc │ │ ├── infostring/ │ │ │ ├── .vale.ini │ │ │ └── test.md │ │ ├── line-endings/ │ │ │ ├── .vale │ │ │ ├── CR.md │ │ │ └── CRLF.md │ │ ├── markup/ │ │ │ ├── .vale.ini │ │ │ └── test.md │ │ ├── one/ │ │ │ └── two/ │ │ │ └── three/ │ │ │ ├── four/ │ │ │ │ └── test.yml │ │ │ └── test.yml │ │ ├── symlinks/ │ │ │ ├── .vale.ini │ │ │ ├── Symlinked/ │ │ │ │ └── Code.yml │ │ │ ├── styles/ │ │ │ │ └── .gitkeep │ │ │ └── test.md │ │ └── unicode/ │ │ ├── .vale │ │ ├── test.py │ │ ├── test.rst │ │ └── test.txt │ ├── patterns/ │ │ ├── .vale.ini │ │ ├── test.adoc │ │ ├── test.html │ │ ├── test.md │ │ ├── test.mdx │ │ ├── test.org │ │ ├── test.py │ │ ├── test.rst │ │ ├── test2.html │ │ ├── test2.rst │ │ ├── test3.html │ │ └── test4.html │ ├── pkg/ │ │ ├── complete/ │ │ │ ├── .gitignore │ │ │ ├── .vale.ini │ │ │ ├── styles/ │ │ │ │ └── .gitkeep │ │ │ └── test.md │ │ ├── config/ │ │ │ ├── .gitignore │ │ │ ├── .vale.ini │ │ │ ├── styles/ │ │ │ │ └── .gitkeep │ │ │ └── test.md │ │ └── style/ │ │ ├── .gitignore │ │ ├── .vale.ini │ │ ├── styles/ │ │ │ └── .gitkeep │ │ └── test.md │ ├── plugins/ │ │ ├── .vale.ini │ │ └── test.md │ ├── scopes/ │ │ ├── attr/ │ │ │ ├── .vale.ini │ │ │ ├── test.adoc │ │ │ ├── test.html │ │ │ ├── test.md │ │ │ └── test.rst │ │ ├── blockquote/ │ │ │ ├── .vale.ini │ │ │ ├── test.adoc │ │ │ ├── test.md │ │ │ └── test.rst │ │ ├── heading/ │ │ │ ├── _vale │ │ │ ├── test.adoc │ │ │ ├── test.dita │ │ │ ├── test.html │ │ │ ├── test.md │ │ │ ├── test.rst │ │ │ └── test.xml │ │ ├── link/ │ │ │ ├── .vale.ini │ │ │ ├── test.adoc │ │ │ ├── test.md │ │ │ ├── test.rst │ │ │ └── vale │ │ ├── list/ │ │ │ ├── _vale │ │ │ ├── test.adoc │ │ │ ├── test.html │ │ │ ├── test.md │ │ │ └── test.rst │ │ ├── multi/ │ │ │ ├── .vale.ini │ │ │ └── test.md │ │ ├── raw/ │ │ │ ├── .vale.ini │ │ │ ├── test.md │ │ │ └── test.py │ │ ├── rules/ │ │ │ ├── Alt.yml │ │ │ ├── And.yml │ │ │ ├── Code.yml │ │ │ ├── Fence.yml │ │ │ ├── H2.yml │ │ │ ├── H3.yml │ │ │ ├── HN.yml │ │ │ ├── Heading.yml │ │ │ ├── Link.yml │ │ │ ├── List.yml │ │ │ ├── MinH2.yml │ │ │ ├── Negated.yml │ │ │ ├── Para.yml │ │ │ ├── Quote.yml │ │ │ ├── Raw.yml │ │ │ ├── Sentence.yml │ │ │ ├── Strong.yml │ │ │ ├── Table.yml │ │ │ └── Title.yml │ │ ├── sentence/ │ │ │ ├── .vale.ini │ │ │ └── test.md │ │ ├── skip/ │ │ │ ├── .vale.ini │ │ │ ├── test.md │ │ │ └── test.rst │ │ └── table/ │ │ ├── _vale │ │ ├── test.adoc │ │ ├── test.html │ │ ├── test.md │ │ └── test.rst │ ├── sections/ │ │ ├── .vale.ini │ │ └── test.md │ ├── spelling/ │ │ ├── .vale.ini │ │ ├── test.adoc │ │ ├── test.dic.md │ │ ├── test.html │ │ ├── test.md │ │ ├── test.rst │ │ └── test.txt │ ├── spellingv3/ │ │ ├── .vale.ini │ │ ├── test.adoc │ │ ├── test.dic.md │ │ ├── test.html │ │ ├── test.md │ │ └── test.rst │ ├── styles/ │ │ ├── Readability/ │ │ │ ├── .vale.ini │ │ │ ├── test.md │ │ │ ├── test2.md │ │ │ └── test3.md │ │ ├── Scripts/ │ │ │ ├── .vale.ini │ │ │ └── test.md │ │ ├── demo/ │ │ │ ├── _vale │ │ │ ├── test.adoc │ │ │ ├── test.html │ │ │ ├── test.md │ │ │ ├── test.mdx │ │ │ ├── test.rst │ │ │ └── vocab.txt │ │ ├── proselint/ │ │ │ ├── _vale │ │ │ └── test.md │ │ └── write-good/ │ │ ├── .vale │ │ ├── test.cc │ │ ├── test.md │ │ └── test.txt │ ├── templates/ │ │ ├── .vale.ini │ │ ├── test.md │ │ └── test2.md │ ├── views/ │ │ ├── .vale.ini │ │ ├── API.yml │ │ ├── Petstore.yaml │ │ ├── Rule.yml │ │ ├── ansible.yml │ │ ├── github-workflow.json │ │ ├── newline.yml │ │ ├── test.java │ │ └── test.py │ └── vocab/ │ ├── Basic/ │ │ ├── .vale.ini │ │ └── test.md │ ├── Multi/ │ │ ├── .vale.ini │ │ └── test.md │ └── styles/ │ └── config/ │ ├── ignorefiles/ │ │ └── vocab.txt │ └── vocabularies/ │ ├── Basic/ │ │ ├── accept.txt │ │ └── reject.txt │ └── Second/ │ ├── accept.txt │ └── reject.txt ├── pkg/ │ └── write-good/ │ ├── Cliches.yml │ ├── E-Prime.yml │ ├── Illusions.yml │ ├── Passive.yml │ ├── README.md │ ├── So.yml │ ├── ThereIs.yml │ ├── TooWordy.yml │ ├── Weasel.yml │ └── meta.json └── styles/ ├── Bugs/ │ ├── EmptyReplace.yml │ ├── KeepCase.yml │ ├── MatchCase.yml │ ├── Newline.yml │ ├── SameCase.yml │ ├── TermCase.yml │ ├── URLCtx.yml │ └── WrongExp.yml ├── Checks/ │ ├── MetricUndefined.yml │ ├── MetricValue.yml │ ├── MetricWords.yml │ ├── MultiCapture.yml │ └── ScriptRE.yml ├── Joblint/ │ ├── Acronyms.yml │ ├── Benefits.yml │ ├── Bro.yml │ ├── Competitive.yml │ ├── Derogatory.yml │ ├── DevEnv.yml │ ├── DumbTitles.yml │ ├── Gendered.yml │ ├── Hair.yml │ ├── LegacyTech.yml │ ├── Meritocracy.yml │ ├── Profanity.yml │ ├── README.md │ ├── Reassure.yml │ ├── Sexualised.yml │ ├── Starter.yml │ ├── TechTerms.yml │ ├── Visionary.yml │ └── meta.json ├── LanguageTool/ │ ├── AMBIG.yml │ ├── APOS_ARE.yml │ ├── ARE_USING.yml │ ├── HYPHEN.yml │ ├── Metadata.yml │ ├── OF_ALL_TIMES.yml │ └── WOULD_BE_JJ_VB.yml ├── Limit/ │ └── Rule.yml ├── Markup/ │ ├── ID.yml │ ├── Repetition.yml │ └── SentSpacing.yml ├── Meta/ │ └── Title.yml ├── README.md ├── RU/ │ └── RUSwap.yml ├── Readability/ │ ├── AutomatedReadability.yml │ ├── ColemanLiau.yml │ ├── FleschKincaid.yml │ ├── FleschReadingEase.yml │ ├── GunningFog.yml │ ├── LIX.yml │ └── SMOG.yml ├── Scopes/ │ ├── Code.yml │ └── Titles.yml ├── Scripts/ │ ├── CustomMsg.yml │ └── Test.yml ├── Spelling/ │ ├── GB.yml │ ├── Ignore.yml │ ├── Ignores.yml │ ├── Test.yml │ └── ignore/ │ ├── base.txt │ └── second.txt ├── ZH/ │ └── Simple.yml ├── config/ │ ├── actions/ │ │ └── CamelToSnake.tengo │ ├── dictionaries/ │ │ ├── en-GB.aff │ │ ├── en-GB.dic │ │ ├── en_US.aff │ │ ├── en_US.dic │ │ ├── en_medical.aff │ │ ├── en_medical.dic │ │ ├── test.aff │ │ └── test.dic │ ├── filters/ │ │ ├── extends.expr │ │ ├── levels.expr │ │ ├── min.expr │ │ └── scope.expr │ ├── ignore/ │ │ ├── base.txt │ │ └── tech/ │ │ └── second.txt │ ├── scripts/ │ │ └── NewSection.tengo │ ├── templates/ │ │ ├── cli.tmpl │ │ ├── collate.tmpl │ │ ├── gitlab.tmpl │ │ └── line.tmpl │ ├── views/ │ │ ├── Ansible.yml │ │ ├── GitHubActions.yml │ │ ├── NewLine.yml │ │ ├── OpenAPI.yml │ │ ├── Petstore.yml │ │ ├── Python.yml │ │ ├── Strings.yml │ │ └── Vale.yml │ └── vocabularies/ │ ├── Cap/ │ │ ├── accept.txt │ │ └── reject.txt │ └── Rep/ │ ├── accept.txt │ └── reject.txt ├── demo/ │ ├── Abbreviations.yml │ ├── Cap.yml │ ├── CapSub.yml │ ├── CharCount.yml │ ├── Code.yml │ ├── CommasPerSentence.yml │ ├── Contractions.yml │ ├── CustomCap.yml │ ├── Ending-Preposition.yml │ ├── Fancy.yml │ ├── Filters.yml │ ├── HeadingStartsWithCapital.yml │ ├── Hyphen.yml │ ├── LookAround.yml │ ├── Meet-up.yml │ ├── Meetup.yml │ ├── MinCount.yml │ ├── ParagraphLength.yml │ ├── Raw.yml │ ├── Reading.yml │ ├── ScopedHeading.yml │ ├── SentenceCase.yml │ ├── SentenceCaseAny.yml │ ├── SentenceLength.yml │ ├── Smart.yml │ ├── Spacing.yml │ ├── Spellcheck.yml │ ├── Spelling.yml │ ├── Terms.yml │ └── ZeroOccurrence.yml ├── proselint/ │ ├── Airlinese.yml │ ├── AnimalLabels.yml │ ├── Annotations.yml │ ├── Apologizing.yml │ ├── Archaisms.yml │ ├── But.yml │ ├── Cliches.yml │ ├── CorporateSpeak.yml │ ├── Currency.yml │ ├── Cursing.yml │ ├── DateCase.yml │ ├── DateMidnight.yml │ ├── DateRedundancy.yml │ ├── DateSpacing.yml │ ├── DenizenLabels.yml │ ├── Diacritical.yml │ ├── GenderBias.yml │ ├── GroupTerms.yml │ ├── Hedging.yml │ ├── Hyperbole.yml │ ├── Illusions.yml │ ├── Jargon.yml │ ├── LGBTOffensive.yml │ ├── LGBTTerms.yml │ ├── Malapropisms.yml │ ├── Needless.yml │ ├── Nonwords.yml │ ├── Oxymorons.yml │ ├── P-Value.yml │ ├── RASSyndrome.yml │ ├── README.md │ ├── Skunked.yml │ ├── Spelling.yml │ ├── Typography.yml │ ├── Uncomparables.yml │ ├── Very.yml │ └── meta.json ├── vale/ │ ├── Annotations.yml │ ├── Editorializing.yml │ ├── Hedging.yml │ ├── Litotes.yml │ ├── Redundancy.yml │ ├── Spacing.yml │ └── Uncomparables.yml └── write-good/ ├── Cliches.yml ├── E-Prime.yml ├── Illusions.yml ├── Passive.yml ├── README.md ├── So.yml ├── ThereIs.yml ├── TooWordy.yml ├── We.yml ├── Weasel.yml └── meta.json