discourse/Dangerfile

12 lines
751 B
Plaintext
Raw Normal View History

if github.pr_json && (github.pr_json["additions"] || 0) > 250 || (github.pr_json["deletions"] || 0) > 250
2018-07-26 02:36:09 +08: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 22:12:15 +08:00
end
prettier_offenses = `prettier --list-different "app/assets/stylesheets/**/*.scss" "app/assets/javascripts/**/*.es6" "test/javascripts/**/*.es6"`.split('\n')
2018-07-24 23:31:57 +08:00
if !prettier_offenses.empty?
2018-07-24 22:12:15 +08:00
fail(%{
2018-07-27 03:45:01 +08:00
This PR doesn't match our required code formatting standards, as enforced by prettier.io. <a href='https://meta.discourse.org/t/prettier-code-formatting-tool/93212'>Here's how to set up prettier in your code editor.</a>\n
2018-07-26 23:03:36 +08:00
#{prettier_offenses.map { |o| github.html_link(o) }.join("\n")}
2018-07-24 22:12:15 +08:00
})
end