From 6e6ae0ef2153fe1f195d5c423d9c8cc091d500d9 Mon Sep 17 00:00:00 2001 From: gmorenz Date: Wed, 14 Feb 2024 17:34:58 -0500 Subject: [PATCH] Ignore 'DROP COLUMN enviroment' in typo checker (#7803) In dropping a misspelled "enviroment" column in #7742, a new "typo" was introduced breaking CI. This fixes that. Release Notes: - N/A --- typos.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/typos.toml b/typos.toml index 1f2349adbd..00e31d07b3 100644 --- a/typos.toml +++ b/typos.toml @@ -22,5 +22,6 @@ extend-ignore-re = [ ":ba\\|z", # :/ crates/collab/migrations/20231009181554_add_release_channel_to_rooms.sql "ADD COLUMN enviroment TEXT", + "ALTER TABLE rooms DROP COLUMN enviroment;", ] check-filename = true