Skip to content

Commit

Permalink
add Dangerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
ho2ri2s committed Jun 8, 2020
1 parent dafd653 commit d880090
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions Dangerfile
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

0 comments on commit d880090

Please sign in to comment.