about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorDaniel Santos <dacs.git@brilhante.top>2023-04-02 11:27:10 +0100
committerDaniel Santos <dacs.git@brilhante.top>2023-04-03 13:25:25 +0100
commitc7f05c9ebf69921cab8ff6f902938982c517d1b9 (patch)
tree539900206b450ff5b8369fd1ded11979fb88d6a3
parentf2c83fa8ceea29e295509c8b964f1e9ccda2f0e4 (diff)
downloadprofani-tty-c7f05c9ebf69921cab8ff6f902938982c517d1b9.tar.gz
Fix typos and update codespell configuration
 * Fix typos.
 * Add words that are not typos to codespell's ignore words list and
 ignore regex.
 * Make codespell ignore URIs.
 * Make `make doublecheck` throw no error.

Signed-off-by: Daniel Santos <dacs.git@brilhante.top>
-rw-r--r--.codespellrc5
-rw-r--r--src/log.c2
-rw-r--r--src/xmpp/vcard.c2
-rw-r--r--tests/unittests/test_parser.c4
4 files changed, 8 insertions, 5 deletions
diff --git a/.codespellrc b/.codespellrc
index 530d70c6..6f22a81a 100644
--- a/.codespellrc
+++ b/.codespellrc
@@ -1,2 +1,5 @@
 [codespell]
-skip = libtool,./autom4te.cache/*,*.html,./build-aux/*,./.git/*,aclocal*,./m4/*,./config.status,./configure,./config.log,todo
+skip = libtool,./autom4te.cache/*,*.html,./build-aux/*,./.git/*,aclocal*,./m4/*,./config.status,./configure,./config.log,todo,jquery.js,*~
+ignore-words-list = iterm
+ignore-regex = \"Hel\"|ist ein|\->fpr
+uri-ignore-words-list = *
diff --git a/src/log.c b/src/log.c
index a1b7bb1d..f2537675 100644
--- a/src/log.c
+++ b/src/log.c
@@ -105,7 +105,7 @@ _rotate_log_file(void)
     log_info("Log has been rotated");
 }
 
-// abbreviation string is the prefix thats used in the log file
+// abbreviation string is the prefix that's used in the log file
 static char*
 _log_abbreviation_string_from_level(log_level_t level)
 {
diff --git a/src/xmpp/vcard.c b/src/xmpp/vcard.c
index 6d2f0b1e..b3ff5d39 100644
--- a/src/xmpp/vcard.c
+++ b/src/xmpp/vcard.c
@@ -297,7 +297,7 @@ vcard_parse(xmpp_stanza_t* vcard_xml, vCard* vcard)
             element->nickname = stanza_text_strdup(child_pointer);
 
             if (!element->nickname) {
-                // Invaild element, free and do not push
+                // Invalid element, free and do not push
                 free(element);
                 continue;
             }
diff --git a/tests/unittests/test_parser.c b/tests/unittests/test_parser.c
index 96143294..3d0d3fc6 100644
--- a/tests/unittests/test_parser.c
+++ b/tests/unittests/test_parser.c
@@ -274,7 +274,7 @@ parse_cmd_with_many_quoted_and_many_spaces(void** state)
 void
 parse_cmd_freetext_with_quoted(void** state)
 {
-    char* inp = "/cmd \"arg1\" arg2 hello there whats up";
+    char* inp = "/cmd \"arg1\" arg2 hello there what's up";
     gboolean result = FALSE;
     gchar** args = parse_args_with_freetext(inp, 3, 3, &result);
 
@@ -282,7 +282,7 @@ parse_cmd_freetext_with_quoted(void** state)
     assert_int_equal(3, g_strv_length(args));
     assert_string_equal("arg1", args[0]);
     assert_string_equal("arg2", args[1]);
-    assert_string_equal("hello there whats up", args[2]);
+    assert_string_equal("hello there what's up", args[2]);
     g_strfreev(args);
 }
 
n101'>101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169