From: Johannes Schindelin Date: Mon, 30 Jul 2018 15:42:58 +0000 (-0700) Subject: vscode: let cSpell work on commit messages, too X-Git-Tag: v2.19.0-rc0~66^2 X-Git-Url: https://git.lorimer.id.au/gitweb.git/diff_plain/12861e200a0e530f5293374a9507c6aea0359e25?ds=sidebyside vscode: let cSpell work on commit messages, too By default, the cSpell extension ignores all files under .git/. That includes, unfortunately, COMMIT_EDITMSG, i.e. commit messages. However, spell checking is *quite* useful when writing commit messages... And since the user hardly ever opens any file inside .git (apart from commit messages, the config, and sometimes interactive rebase's todo lists), there is really not much harm in *not* ignoring .git/. The default also ignores `node_modules/`, but that does not apply to Git, so let's skip ignoring that, too. Signed-off-by: Johannes Schindelin Signed-off-by: Junio C Hamano --- diff --git a/contrib/vscode/init.sh b/contrib/vscode/init.sh index a134cb4c5f..27de94994b 100755 --- a/contrib/vscode/init.sh +++ b/contrib/vscode/init.sh @@ -33,6 +33,8 @@ cat >.vscode/settings.json.new <<\EOF || "*.h": "c", "*.c": "c" }, + "cSpell.ignorePaths": [ + ], "cSpell.words": [ "DATAW", "DBCACHED",