Skip to content

Commit 0763ad7

Browse files
authored
Merge pull request #847 from jfragoulis/fix_master
Fix master
2 parents ed669cd + 215937f commit 0763ad7

File tree

3 files changed

+10
-5
lines changed

3 files changed

+10
-5
lines changed

.rubocop.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
inherit_from: .rubocop_todo.yml
2-
require:
2+
require:
33
- rubocop-rspec
4-
- rubocop/cop/internal_affairs
4+
- rubocop/cop/internal_affairs
55

66
AllCops:
77
DisplayCopNames: true
@@ -13,7 +13,7 @@ AllCops:
1313
- 'spec/smoke_tests/**/*.rb'
1414

1515
# See https://github.com/rubocop-hq/rubocop/issues/6410
16-
Layout/AlignHash:
16+
Layout/HashAlignment:
1717
Enabled: false
1818

1919
Metrics/BlockLength:

.rubocop_todo.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,16 @@
11
# This configuration was generated by
22
# `rubocop --auto-gen-config`
3-
# on 2019-08-06 21:29:02 +0300 using RuboCop version 0.70.0.
3+
# on 2019-12-12 15:15:34 +0200 using RuboCop version 0.77.0.
44
# The point is for the user to remove these configuration records
55
# one by one as the offenses are removed from the code base.
66
# Note that changes in the inspected code, or installation of new
77
# versions of RuboCop, may require this file to be generated again.
88

9+
# Offense count: 9
10+
# Cop supports --auto-correct.
11+
InternalAffairs/MethodNameEqual:
12+
Enabled: false
13+
914
# Offense count: 1
1015
# Configuration parameters: CountComments.
1116
Metrics/ClassLength:

lib/rubocop/cop/rspec_cops.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
begin
1111
require_relative 'rspec/rails/http_status'
12-
rescue LoadError # rubocop:disable Lint/HandleExceptions
12+
rescue LoadError # rubocop:disable Lint/SuppressedException
1313
# Rails/HttpStatus cannot be loaded if rack/utils is unavailable.
1414
end
1515

0 commit comments

Comments
 (0)