Makefile,Rakefile: rename lint target to check; #5790

The pre-commit check does some static analysis but the term lint is used
as static analysis of software code under the UNIX environment. So we
have renamed the target `check`.
This commit is contained in:
Yukihiro "Matz" Matsumoto
2022-09-17 16:44:24 +09:00
parent 52b2e12f07
commit a9d0e9a412
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -14,6 +14,6 @@ clean :
$(RAKE) clean
.PHONY : clean
lint :
check :
pre-commit run --all-files
.PHONY : lint
+1 -1
View File
@@ -96,6 +96,6 @@ task :install_bin => :all do
end
end
task :lint do
task :check do
sh "pre-commit run --all-files"
end