-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
14 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
# Make it more obvious that a PR is a work in progress and shouldn't be merged yet | ||
warn("PR is classed as Work in Progress") if github.pr_title.include? "[WIP]" | ||
|
||
# Warn when there is a big PR | ||
warn("Big PR") if git.lines_of_code > 500 | ||
|
||
# Don't let testing shortcuts get into master by accident | ||
fail("fdescribe left in tests") if `grep -r fdescribe specs/ `.length > 1 | ||
fail("fit left in tests") if `grep -r fit specs/ `.length > 1 | ||
|
||
# Flutter lint | ||
flutter_lint.only_modified_files = true | ||
flutter_lint.report_path = "flutter_analyze_report.txt" | ||
flutter_lint.lint |