diff --git a/Makefile b/Makefile index 088479498..4e70a8e63 100644 --- a/Makefile +++ b/Makefile @@ -17,3 +17,7 @@ clean : check : pre-commit run --all-files .PHONY : check + +checkupdate : + pre-commit autoupdate +.PHONY : checkupdate diff --git a/Rakefile b/Rakefile index 93b5f668d..e8591442c 100644 --- a/Rakefile +++ b/Rakefile @@ -99,3 +99,7 @@ end task :check do sh "pre-commit run --all-files" end + +task :checkupdate do + sh "pre-commit autoupdate" +end