mirror of
https://github.com/profanity-im/profanity.git
synced 2025-02-02 15:08:15 -05:00
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>
This commit is contained in:
parent
f2c83fa8ce
commit
c7f05c9ebf
@ -1,2 +1,5 @@
|
|||||||
[codespell]
|
[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 = *
|
||||||
|
@ -105,7 +105,7 @@ _rotate_log_file(void)
|
|||||||
log_info("Log has been rotated");
|
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*
|
static char*
|
||||||
_log_abbreviation_string_from_level(log_level_t level)
|
_log_abbreviation_string_from_level(log_level_t level)
|
||||||
{
|
{
|
||||||
|
@ -297,7 +297,7 @@ vcard_parse(xmpp_stanza_t* vcard_xml, vCard* vcard)
|
|||||||
element->nickname = stanza_text_strdup(child_pointer);
|
element->nickname = stanza_text_strdup(child_pointer);
|
||||||
|
|
||||||
if (!element->nickname) {
|
if (!element->nickname) {
|
||||||
// Invaild element, free and do not push
|
// Invalid element, free and do not push
|
||||||
free(element);
|
free(element);
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
@ -274,7 +274,7 @@ parse_cmd_with_many_quoted_and_many_spaces(void** state)
|
|||||||
void
|
void
|
||||||
parse_cmd_freetext_with_quoted(void** state)
|
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;
|
gboolean result = FALSE;
|
||||||
gchar** args = parse_args_with_freetext(inp, 3, 3, &result);
|
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_int_equal(3, g_strv_length(args));
|
||||||
assert_string_equal("arg1", args[0]);
|
assert_string_equal("arg1", args[0]);
|
||||||
assert_string_equal("arg2", args[1]);
|
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);
|
g_strfreev(args);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user