gpt4 book ai didi

Git Hook Spellchecker 忽略缩进行

转载 作者:太空狗 更新时间:2023-10-29 14:29:40 26 4
gpt4 key购买 nike

我正在编写一个 git 钩子(Hook)来拼写检查我的提交消息。这是我到目前为止所拥有的:

#!/bin/sh

ASPELL=$(which aspell)

WORDS=$($ASPELL list < "$1")

if [ -n "$WORDS" ]; then
echo -e "Possible spelling errors found in commit message. Consider using git commit --amend to change the message.\n\tPossible mispelled words: " $WORDS
fi

我不确定如何告诉 aspell 我想忽略缩进的行(两个或更多空格)。这将避免有关文件名、注释等的恼人消息。

谢谢!

最佳答案

您是否正在学习 EECS 398?

只是给你一个提示,不会破坏荣誉守则。

将提交消息放入文本文件中。使用文本编辑器从文本文件中删除缩进的行。然后将文本文件通过 aspell。

关于Git Hook Spellchecker 忽略缩进行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35180963/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com