-
-
Notifications
You must be signed in to change notification settings - Fork 459
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
#1353 Add CI spell checking using "typos"
* fix EditorConfig for YAML files to match current state (2-space indentation) * add https://github.com/crate-ci/typos spell checking
- Loading branch information
1 parent
c8ace29
commit c32608b
Showing
3 changed files
with
27 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
files.extend-exclude = ["distr/*"] | ||
|
||
# typos can't handle "2nd" as a word (yet?) | ||
default.extend-ignore-identifiers-re = ["_2nd"] | ||
|
||
[default.extend-words] | ||
ser = "ser" # serialization | ||
thr = "thr" # thread | ||
|
||
[default.extend-identifiers] | ||
ba = "ba" # block_allocator | ||
ecs_eis = "ecs_eis" # entity index store (entity_index.h) | ||
numer = "numer" # numerator (posix_impl.inl) | ||
ot = "ot" # Opaque Type or Other Table | ||
Fo = "Fo" # used in test cases/examples | ||
UE4 = "UE4" | ||
PNGs = "PNGs" |