mirror of
https://github.com/huggingface/kernels.git
synced 2025-10-20 12:33:46 +08:00
8 lines
136 B
Makefile
8 lines
136 B
Makefile
.PHONY: style
|
|
|
|
export check_dirs := src examples tests
|
|
|
|
style:
|
|
black ${check_dirs}
|
|
isort ${check_dirs}
|
|
ruff check ${check_dirs} --fix
|