mirror of
https://github.com/curl/curl.git
synced 2026-04-14 00:51:42 +08:00
The file is almost entirely made up by first-lines of previous git commits, and we usually push it without a PR cycle, making it annoying to trigger on typos later as they then show in independent PRs by other people. Closes #20917
36 lines
1011 B
TOML
36 lines
1011 B
TOML
# Copyright (C) Daniel Stenberg, <daniel@haxx.se>, et al.
|
|
#
|
|
# SPDX-License-Identifier: curl
|
|
|
|
[default]
|
|
extend-ignore-identifiers-re = [
|
|
"^(ba|fo|pn|PN|UE)$",
|
|
"^(CNA|cpy|ser)$",
|
|
"^(ECT0|ECT1|HELO|htpts|PASE)$",
|
|
"^[A-Za-z0-9_-]*(EDE|GOST)[A-Z0-9_-]*$", # ciphers
|
|
"^0x[0-9a-fA-F]+FUL$", # unsigned long hex literals ending with 'F'
|
|
"^(eyeballers|HELO_smtp|Januar|optin|passin|perfec|SMTP_HELO)$",
|
|
"^(clen|req_clen|smtp_perform_helo|smtp_state_helo_resp|Tru64|_stati64)$",
|
|
"(_ccontains|_controllen|O_WRONLY|secur32)",
|
|
"proxys", # this should be limited to tests/http/*. Short for secure proxy.
|
|
]
|
|
|
|
extend-ignore-re = [
|
|
".*spellchecker:disable-line",
|
|
]
|
|
|
|
[files]
|
|
extend-exclude = [
|
|
".github/scripts/codespell-ignore.words",
|
|
".github/scripts/pyspelling.words",
|
|
"docs/THANKS",
|
|
"projects/OS400/*",
|
|
"projects/vms/*",
|
|
"projects/Windows/tmpl/curl.vcxproj",
|
|
"projects/Windows/tmpl/libcurl.vcxproj",
|
|
"RELEASE-NOTES",
|
|
"scripts/wcurl",
|
|
"tests/data/test*",
|
|
"tests/unit/unit1625.c",
|
|
]
|