discourse/Dangerfile

12 lines
665 B
Plaintext
Raw Normal View History

if github.pr_json && (github.pr_json["additions"] || 0) > 250 || (github.pr_json["deletions"] || 0) > 250
2018-07-25 14:36:09 -04:00
warn("This pull request is big! We prefer smaller PRs whenever possible, as they are easier to review. Can this be split into a few smaller PRs?")
2018-07-24 10:12:15 -04:00
end
prettier_offenses = `prettier --list-different "app/assets/stylesheets/**/*.scss" "app/assets/javascripts/**/*.es6" "test/javascripts/**/*.es6"`.split('\n')
2018-07-24 11:31:57 -04:00
if !prettier_offenses.empty?
2018-07-24 10:12:15 -04:00
fail(%{
2018-07-26 10:53:45 -04:00
This PR has multiple prettier offenses. <a href='https://meta.discourse.org/t/prettier-code-formatting-tool/93212'>Using prettier</a>\n
2018-07-26 11:03:36 -04:00
#{prettier_offenses.map { |o| github.html_link(o) }.join("\n")}
2018-07-24 10:12:15 -04:00
})
end