From c8153a20597b1f52252398908b64384ea76e90b4 Mon Sep 17 00:00:00 2001 From: Knox Lively Date: Mon, 26 Feb 2024 10:50:06 -0700 Subject: [PATCH] added typos-cli config file --- _typos.toml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 _typos.toml diff --git a/_typos.toml b/_typos.toml new file mode 100644 index 0000000..1adf504 --- /dev/null +++ b/_typos.toml @@ -0,0 +1,18 @@ +### This configuration file is for typos-cli, a command-line tool designed to detect and correct typos in text files. (Install here: https://github.com/crate-ci/typos) +### Use this file to override false flags. +### Documentation: https://github.com/crate-ci/typos/blob/master/docs/reference.md + +# Ignore words +[default.extend-words] +OTP = "OTP" +OTPs = "OTPs" + +# Ignore identifiers +[default.extend-identifiers] +OTP = "OTP" +OTPs = "OTPs" + +#Ignore filetype example +[type.po] +extend-glob = ["*.po"] +check-file = false \ No newline at end of file