vote up 3 vote down star
1

I like to use the present tense in my git logs (eg "Add feature" instead of "Added feature"). Currently, I have an extremely naive git hook that aborts the commit if the first word of the log message ends in 'ed', but I'd like a more robust solution (where 'more robust' means 'not totally lame'). Does anyone know of a grammar checker that would give me the ability to write a script along the lines of:

echo $TEXT | check-grammar --present-tense || exit 1 

I don't need a perfect solution, just something better than matching /^\w*ed\W/.

flag

80% accept rate
Curious: does checking for "-ed" have any problems? Are there things that haven't been caught using this method? You could also check for gerunds ("adding feature"), so just add "-ing" to your list of invalid suffixes. I would imagine that you don't have to worry about aux verbs ("have added feature"). So the only thing left would be irregular verbs ("buy/bought feature") but i think you'd need some sort of dictionary for that. – rascher Nov 8 at 16:09

1 Answer

vote up 1 vote down

You might be able to use morpha for this purpose. Morpha is a lemmatizer that splits endings from base words, and then changes the base word to its uninflected form, which is conveniently the same as the underspecified third person singular in English.

As an example, the input 'added' would result in 'add+ed', meaning that you can even just prompt your exit command if the first word of the commit string has a plus sign in it, if you're looking for the most naive approach possible.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.