Skip to content

Commit

Permalink
✨ feat(imperative): expand non-imperative verbs list
Browse files Browse the repository at this point in the history
  • Loading branch information
welpo committed Feb 16, 2024
1 parent 7dd8add commit d13e6e5
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions src/lint/constants/non_imperative_verbs.rs
Expand Up @@ -5,6 +5,9 @@ lazy_static! {
/// A static HashSet containing non-imperative verb forms common to commit messages.
pub static ref NON_IMPERATIVE_VERBS: HashSet<&'static str> = {
vec![
"abstracted",
"abstracting",
"abstracts",
"added",
"adding",
"adds",
Expand Down Expand Up @@ -142,6 +145,12 @@ lazy_static! {
"extracted",
"extracting",
"extracts",
"finalised",
"finalises",
"finalising",
"finalized",
"finalizes",
"finalizing",
"finished",
"finishes",
"finishing",
Expand Down Expand Up @@ -190,6 +199,9 @@ lazy_static! {
"installed",
"installing",
"installs",
"integrated",
"integrates",
"integrating",
"introduced",
"introduces",
"introducing",
Expand Down Expand Up @@ -227,6 +239,15 @@ lazy_static! {
"optimized",
"optimizes",
"optimizing",
"organised",
"organises",
"organising",
"organized",
"organizes",
"organizing",
"overrides",
"overriding",
"overrode",
"permits",
"permitted",
"permitting",
Expand Down

0 comments on commit d13e6e5

Please sign in to comment.