forked from PelicanPlatform/pelican
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path_typos.toml
28 lines (25 loc) · 883 Bytes
/
_typos.toml
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
# Configure 'typos' to reduce false positives.
# For more information, see <https://github.com/crate-ci/typos>.
[default]
extend-ignore-identifiers-re = [
## Ignore TLAs. Two and three letter acronyms are not worth fixing.
"^[A-Za-z]{2,3}$",
## Ignore lotman's use of 'ded' for 'dedicated'.
"^ded[A-Z]",
"^[a-z]+Ded",
## Ignore server_utils's use of 'dne' for 'does not exist'.
"_dne$",
]
[default.extend-identifiers]
## The 'cipher' library uses "Encrypter"; 'typos' prefers "Encryptor".
NewCFBEncrypter = "NewCFBEncrypter"
## HTCondor's daemon names follow the usual "{word} + 'd'" convention.
StartdAttrs = "StartdAttrs"
[files]
extend-exclude = [
## Ignore configuration files and the like.
"go.mod",
"xrootd/resources/osdf-authfile",
## Ignore this script because of its inline certificates.
"github_scripts/osx_install.sh",
]