]> git.ipfire.org Git - thirdparty/xz.git/blob - .codespellrc
CMake: Simplify symlink creation and install translated man pages.
[thirdparty/xz.git] / .codespellrc
1 [codespell]
2
3 # Skip all translation files and a few other autogenerated files.
4 # The autotool files should have their typos fixed in the upstream, but
5 # until then we will blacklist them here.
6 skip = *.po,*.pot,./po4a/man,./doc/api,./configure,./autom4te.cache,./m4/libtool.m4,./build-aux/depcomp,./build-aux/ltmain.sh,./build-aux/config.guess,./build-aux/config.rpath,./m4/po.m4,./build-aux/config.sub
7
8 # Ignore false positive matching words. Ideally codespell would allow
9 # ignoring words for specific files, but that does not appear to be
10 # supported. Instead we need to hope we do not make these typos.
11 # Additionally, the ignored words must be specified lower-case even though
12 # some of the false positives only occurred upper-case.
13 # ANS - used as a variable name in xzmore.in.
14 # bu - groff syntax for creating a bullet list item, used in xz.1.
15 # te - groff syntax, used in xz.1.
16 # caf - command line options for tar example, used in xz.1.
17 ignore-words-list = ans,bu,te,caf
18
19 # Add extra dictionaries to help improvement comments, docs, etc.
20 builtin = clear,rare,informal,usage,names
21
22 # Always default to highest interactive level to avoid accidentally
23 # changing a false positive or picking the wrong replacement.
24 interactive = 3