diff options
| author | Dan Allen <dan.j.allen@gmail.com> | 2021-07-01 23:54:42 -0600 |
|---|---|---|
| committer | Dan Allen <dan.j.allen@gmail.com> | 2021-07-02 05:04:55 -0600 |
| commit | 62ee6e43c564c3a91ed6997f208f691ffa43b4da (patch) | |
| tree | b1411f98dec442437551a44f2caa708ac60452c7 /tasks | |
| parent | 33b37a5fd12db84cc07964913adb702046518295 (diff) | |
upgrade RuboCop, add new rules, and adjust code to confirm [skip ci]
Diffstat (limited to 'tasks')
| -rw-r--r-- | tasks/rubocop.rake | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/tasks/rubocop.rake b/tasks/rubocop.rake index f64859b3..71ae3d74 100644 --- a/tasks/rubocop.rake +++ b/tasks/rubocop.rake @@ -7,8 +7,10 @@ begin end rescue LoadError => e task :lint do - raise 'Failed to load lint task. -Install required gems using: bundle --path=.bundle/gems -Then, invoke Rake using: bundle exec rake', cause: e + raise <<~'EOS', cause: e + Failed to load lint task. + Install required gems using: bundle --path=.bundle/gems + Then, invoke Rake using: bundle exec rake' + EOS end end |
