3ae282b452
This helps to find such classes without digging through the rest of the class reference. Editor-only classes can still be found under your normal "Node" and "Resource" types. This also fixes a typo and a missed case from the recent platform docs PR.
12 lines
377 B
Bash
Executable file
12 lines
377 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
# Git pre-commit hook that checks the class reference syntax using make_rst.py.
|
|
|
|
# Workaround because we can't execute the .py file directly on windows
|
|
PYTHON=python
|
|
py_ver=$($PYTHON -c "import sys; print(sys.version_info.major)")
|
|
if [[ "$py_ver" != "3" ]]; then
|
|
PYTHON+=3
|
|
fi
|
|
|
|
$PYTHON doc/tools/make_rst.py doc/classes modules platform --dry-run --color
|