Skip to content

Commit

Permalink
Make swiftlint --quiet in script/format.
Browse files Browse the repository at this point in the history
Remove useless `--strict` from `swiftlint` in `script/format`.

Partial mas-cli#638

Signed-off-by: Ross Goldberg <[email protected]>
  • Loading branch information
rgoldberg committed Nov 23, 2024
1 parent de1c943 commit bf5f8eb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion script/format
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ for source in Package.swift Sources Tests; do
printf -- $'--> 🦅 %s swiftformat\n' "${source}"
swiftformat --strict "${source}"
printf -- $'--> 🦅 %s swiftlint\n' "${source}"
swiftlint --fix --strict "${source}"
swiftlint --fix --quiet "${source}"
done

printf -- $'--> 📜 Bash shfmt\n'
Expand Down

0 comments on commit bf5f8eb

Please sign in to comment.