Skip to content

Commit

Permalink
Let quality yell at the user if it's a version difference (#1438)
Browse files Browse the repository at this point in the history
* Let quality yell at the user if it's a version difference

* Also include in style
  • Loading branch information
muellerzr authored May 16, 2023
1 parent 435079a commit a28491b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -12,13 +12,13 @@ extra_quality_checks:

# this target runs checks on all files
quality:
black --check $(check_dirs)
black --required-version 23 --check $(check_dirs)
ruff $(check_dirs)
doc-builder style src/accelerate docs/source --max_len 119 --check_only

# Format source code automatically and check is there are any problems left that need manual fixing
style:
black $(check_dirs)
black --required-version 23 $(check_dirs)
ruff $(check_dirs) --fix
doc-builder style src/accelerate docs/source --max_len 119

Expand Down

0 comments on commit a28491b

Please sign in to comment.