mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-06 07:32:27 +00:00
15 lines
594 B
Bash
Executable File
15 lines
594 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
# Check for typos in code.
|
|
|
|
ROOT_PATH=$(git rev-parse --show-toplevel)
|
|
|
|
codespell \
|
|
--skip '*generated*,*gperf*,*.bin,*.mrk*,*.idx,checksums.txt,*.dat,*.pyc,*.kate-swp,*obfuscateQueries.cpp' \
|
|
--ignore-words "${ROOT_PATH}/utils/check-style/codespell-ignore-words.list" \
|
|
--exclude-file "${ROOT_PATH}/utils/check-style/codespell-ignore-lines.list" \
|
|
--quiet-level 2 \
|
|
"$ROOT_PATH"/{src,base,programs,utils} \
|
|
$@ | grep -P '.' \
|
|
&& echo -e "\nFound some typos in code.\nSee the files utils/check-style/codespell* if you want to add an exception."
|