We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b03b022 commit 5304640Copy full SHA for 5304640
justfile
@@ -20,8 +20,10 @@ alias lint-check := format-check
20
# ⭐ check style & formatting for all files, fixing what we can
21
lint: (format-check "--autocorrect")
22
23
+# NOTE: "-o /dev/null" is vital - rubocop has super noisy output and codegen will crash when formatting ruby if everything gets printed
24
+# so, we send all its output to the void
25
# copy of `lint` with less output
-format: (format-check "--format quiet --autocorrect")
26
+format: (format-check "-o /dev/null --autocorrect")
27
28
update-certs: install
29
bundle exec rake update_certs
0 commit comments