-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtypos.toml
22 lines (19 loc) · 870 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
# Settings for typos-cli tool
# [Typos Configuration Reference](https://github.com/crate-ci/typos/blob/master/docs/reference.md)
#
# Syntax: .gitignore glob syntax
# `*` : match any file in a single level
# `**` : recursively match
# `**/*` : specifies any _files_ at any level (subtly & potentially different)
#
# files -> "identifiers" -> words
# (I *believe* 'identifiers' are some sort of pre-word chunk that will later tbe split into words for checking.)
#
# toml parsing note: single quotes (`'`) seems to allow literal strings. Important for regexes; double quote s(`"`) will create
# toml parse errors when encounterint (at least) `\` chars.
[default]
extend-ignore-re =['assert_eq!\(.*\);']
[default.extend-words]
egui = "egui"
[files]
extend-exclude = ["**/data/**", ".output/**", "*.log", "*.csv", "target/*"]