diff options
author | catch <catch@35733.no-reply.drupal.org> | 2021-10-28 13:18:59 +0100 |
---|---|---|
committer | catch <catch@35733.no-reply.drupal.org> | 2021-10-28 13:18:59 +0100 |
commit | 3eba4b3c583e94b3e2306ca0c141251e0939d7b1 (patch) | |
tree | bd6bbc39272b82d557ce6e8cf5dda6a902f6d76c /core/scripts/dev/commit-code-check.sh | |
parent | b78a9333aa0dd823334bf9e99e72864b124db2c7 (diff) | |
download | drupal-3eba4b3c583e94b3e2306ca0c141251e0939d7b1.tar.gz drupal-3eba4b3c583e94b3e2306ca0c141251e0939d7b1.zip |
Issue #3226052 by longwave, alexpott: Update to cspell 5
Diffstat (limited to 'core/scripts/dev/commit-code-check.sh')
-rwxr-xr-x | core/scripts/dev/commit-code-check.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/scripts/dev/commit-code-check.sh b/core/scripts/dev/commit-code-check.sh index 78a96db0b4bd..db3eabda9192 100755 --- a/core/scripts/dev/commit-code-check.sh +++ b/core/scripts/dev/commit-code-check.sh @@ -166,7 +166,7 @@ if [ $DEPENDENCIES_NEED_INSTALLING -ne 0 ]; then fi # Check all files for spelling in one go for better performance. -yarn run -s spellcheck -c $TOP_LEVEL/core/.cspell.json $ABS_FILES +yarn run -s spellcheck --no-must-find-files -c $TOP_LEVEL/core/.cspell.json $ABS_FILES if [ "$?" -ne "0" ]; then # If there are failures set the status to a number other than 0. FINAL_STATUS=1 |