mirror of
https://github.com/discourse/discourse.git
synced 2024-11-23 06:49:14 +08:00
12 lines
611 B
Ruby
12 lines
611 B
Ruby
if github.pr_json && (github.pr_json["additions"] || 0) > 250 || (github.pr_json["deletions"] || 0) > 250
|
|
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?")
|
|
end
|
|
|
|
prettier_offenses = `prettier --list-different "app/assets/stylesheets/**/*.scss" "app/assets/javascripts/**/*.es6" "test/javascripts/**/*.es6"`.split('\n')
|
|
if !prettier_offenses.empty?
|
|
fail(%{
|
|
This PR has multiple prettier offenses (prettier.io). We recommend configuring prettier linting in your editor:\n
|
|
#{prettier_offenses.join("\n")}
|
|
})
|
|
end
|