Closed at-grandpa closed 6 years ago
make test
の前に make lint
が走る場合は大丈夫なのですが。。
https://github.com/mrrooijen/commander に PR送りますかね。。
このパッチでlib以下は入らなくなる気がする。
diff --git a/Makefile b/Makefile
index be2f594..f4e1d48 100644
--- a/Makefile
+++ b/Makefile
@@ -34,7 +34,7 @@ ADOCS = \
$(wildcard */*.adoc)
EXAMPLES = $(wildcard */examples/**/*.cr)
PROJECTS = $(wildcard */projects/*)
-PROJECT_CRS = $(and $(PROJECTS), $(shell find $(PROJECTS) -name '*.cr'))
+PROJECT_CRS = $(and $(PROJECTS), $(shell find $(PROJECTS) -type d -name lib -prune -o -name '*.cr' -print))
ASSETS = $(shell find [0-9][0-9]-* -not -name '*.adoc')
CRS = $(EXAMPLES) $(PROJECT_CRS)
お!行きました!
PR作っておきますねー
ボクがやります
お、ではお願いします
CLI ビルダーの https://github.com/mrrooijen/commander をinstallしているのですが、
crystal tool format
をすると、と落ちてしまいます。
lib
ディレクトリ配下は format の対象にしないほうが良さそうですね。ちょっと対策考えます。パッチ思いつく方は大歓迎です!