mirror of
https://github.com/vale981/ray
synced 2025-03-06 10:31:39 -05:00

* Use pep8 style The original style file is actually just pep8 style, but with everything spelled out. It's easier to use the `based_on_style` feature. Any overrides are clearer that way. * Improve yapf script 1. Do formatting in parallel 2. Lint RLlib 3. Use .style.yapf file * Pull out expressions into variables * Don't format rllib * Don't allow splits in dicts * Apply yapf * Disallow single line if-statements * Use arithmetic comparison * Simplify checking for changed files * Pull out expr into var
29 lines
692 B
Bash
Executable file
29 lines
692 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
# Cause the script to exit if a single command fails
|
|
set -eo pipefail
|
|
|
|
# this stops git rev-parse from failing if we run this from the .git directory
|
|
builtin cd "$(dirname "${BASH_SOURCE:-$0}")"
|
|
|
|
ROOT="$(git rev-parse --show-toplevel)"
|
|
builtin cd "$ROOT"
|
|
|
|
yapf \
|
|
--style "$ROOT/.style.yapf" \
|
|
--in-place --recursive --parallel \
|
|
--exclude 'python/ray/cloudpickle' \
|
|
--exclude 'python/ray/dataframe' \
|
|
--exclude 'python/ray/rllib' \
|
|
-- \
|
|
'test' 'python'
|
|
|
|
if ! git diff --quiet; then
|
|
echo 'Reformatted staged files. Please review and stage the changes.'
|
|
echo 'Files updated:'
|
|
echo
|
|
|
|
git --no-pager diff --name-only
|
|
|
|
exit 1
|
|
fi
|