|
1 | 1 | # This configuration was generated by
|
2 |
| -# `rubocop --auto-gen-config` |
3 |
| -# on 2020-06-29 22:12:50 UTC using RuboCop version 0.86.0. |
| 2 | +# `rubocop --auto-gen-config --auto-gen-only-exclude --exclude-limit 5000` |
| 3 | +# on 2023-07-06 17:02:48 UTC using RuboCop version 1.42.0. |
4 | 4 | # The point is for the user to remove these configuration records
|
5 | 5 | # one by one as the offenses are removed from the code base.
|
6 | 6 | # Note that changes in the inspected code, or installation of new
|
7 | 7 | # versions of RuboCop, may require this file to be generated again.
|
8 | 8 |
|
9 | 9 | # Offense count: 1
|
10 |
| -# Configuration parameters: Include. |
| 10 | +# Configuration parameters: Severity, Include. |
11 | 11 | # Include: **/*.gemspec
|
12 | 12 | Gemspec/RequiredRubyVersion:
|
13 | 13 | Exclude:
|
14 | 14 | - 'grape-swagger-entity.gemspec'
|
15 | 15 |
|
| 16 | +# Offense count: 3 |
| 17 | +# Configuration parameters: AllowedMethods. |
| 18 | +# AllowedMethods: enums |
| 19 | +Lint/ConstantDefinitionInBlock: |
| 20 | + Exclude: |
| 21 | + - 'spec/grape-swagger/entities/response_model_spec.rb' |
| 22 | + - 'spec/support/shared_contexts/inheritance_api.rb' |
| 23 | + - 'spec/support/shared_contexts/this_api.rb' |
| 24 | + |
| 25 | +# Offense count: 1 |
| 26 | +# Configuration parameters: AllowComments, AllowEmptyLambdas. |
| 27 | +Lint/EmptyBlock: |
| 28 | + Exclude: |
| 29 | + - 'spec/grape-swagger/entity/attribute_parser_spec.rb' |
| 30 | + |
| 31 | +# Offense count: 1 |
| 32 | +# This cop supports unsafe autocorrection (--autocorrect-all). |
| 33 | +# Configuration parameters: AllowedMethods. |
| 34 | +# AllowedMethods: instance_of?, kind_of?, is_a?, eql?, respond_to?, equal? |
| 35 | +Lint/RedundantSafeNavigation: |
| 36 | + Exclude: |
| 37 | + - 'lib/grape-swagger/entity/attribute_parser.rb' |
| 38 | + |
16 | 39 | # Offense count: 4
|
17 |
| -# Configuration parameters: IgnoredMethods. |
| 40 | +# Configuration parameters: AllowedMethods, AllowedPatterns, IgnoredMethods, CountRepeatedAttributes, Max. |
18 | 41 | Metrics/AbcSize:
|
19 |
| - Max: 30 |
| 42 | + Exclude: |
| 43 | + - 'lib/grape-swagger/entity/attribute_parser.rb' |
| 44 | + - 'lib/grape-swagger/entity/parser.rb' |
| 45 | + |
| 46 | +# Offense count: 13 |
| 47 | +# Configuration parameters: CountComments, Max, CountAsOne, ExcludedMethods, AllowedMethods, AllowedPatterns, IgnoredMethods. |
| 48 | +# AllowedMethods: refine |
| 49 | +Metrics/BlockLength: |
| 50 | + Exclude: |
| 51 | + - '**/*.gemspec' |
| 52 | + - 'spec/grape-swagger/entities/response_model_spec.rb' |
| 53 | + - 'spec/grape-swagger/entity/attribute_parser_spec.rb' |
| 54 | + - 'spec/grape-swagger/entity/parser_spec.rb' |
| 55 | + - 'spec/support/shared_contexts/this_api.rb' |
20 | 56 |
|
21 | 57 | # Offense count: 1
|
22 |
| -# Configuration parameters: CountComments. |
| 58 | +# Configuration parameters: CountComments, Max, CountAsOne. |
23 | 59 | Metrics/ClassLength:
|
24 |
| - Max: 111 |
| 60 | + Exclude: |
| 61 | + - 'lib/grape-swagger/entity/parser.rb' |
25 | 62 |
|
26 | 63 | # Offense count: 2
|
27 |
| -# Configuration parameters: IgnoredMethods. |
| 64 | +# Configuration parameters: AllowedMethods, AllowedPatterns, IgnoredMethods, Max. |
28 | 65 | Metrics/CyclomaticComplexity:
|
29 |
| - Max: 11 |
| 66 | + Exclude: |
| 67 | + - 'lib/grape-swagger/entity/attribute_parser.rb' |
| 68 | + - 'lib/grape-swagger/entity/parser.rb' |
30 | 69 |
|
31 | 70 | # Offense count: 5
|
32 |
| -# Configuration parameters: CountComments, ExcludedMethods. |
| 71 | +# Configuration parameters: CountComments, Max, CountAsOne, ExcludedMethods, AllowedMethods, AllowedPatterns, IgnoredMethods. |
33 | 72 | Metrics/MethodLength:
|
34 |
| - Max: 25 |
| 73 | + Exclude: |
| 74 | + - 'lib/grape-swagger/entity/attribute_parser.rb' |
| 75 | + - 'lib/grape-swagger/entity/parser.rb' |
35 | 76 |
|
36 | 77 | # Offense count: 2
|
37 |
| -# Configuration parameters: IgnoredMethods. |
| 78 | +# Configuration parameters: AllowedMethods, AllowedPatterns, IgnoredMethods, Max. |
38 | 79 | Metrics/PerceivedComplexity:
|
39 |
| - Max: 12 |
| 80 | + Exclude: |
| 81 | + - 'lib/grape-swagger/entity/attribute_parser.rb' |
| 82 | + - 'lib/grape-swagger/entity/parser.rb' |
| 83 | + |
| 84 | +# Offense count: 2 |
| 85 | +# Configuration parameters: EnforcedStyle, CheckMethodNames, CheckSymbols, AllowedIdentifiers, AllowedPatterns. |
| 86 | +# SupportedStyles: snake_case, normalcase, non_integer |
| 87 | +# AllowedIdentifiers: capture3, iso8601, rfc1123_date, rfc822, rfc2822, rfc3339 |
| 88 | +Naming/VariableNumber: |
| 89 | + Exclude: |
| 90 | + - 'spec/grape-swagger/entities/response_model_spec.rb' |
40 | 91 |
|
41 | 92 | # Offense count: 4
|
| 93 | +# Configuration parameters: AllowedConstants. |
42 | 94 | Style/Documentation:
|
43 | 95 | Exclude:
|
44 | 96 | - 'spec/**/*'
|
45 | 97 | - 'test/**/*'
|
46 | 98 | - 'lib/grape-swagger/entity.rb'
|
47 | 99 | - 'lib/grape-swagger/entity/attribute_parser.rb'
|
48 | 100 | - 'lib/grape-swagger/entity/parser.rb'
|
| 101 | + |
| 102 | +# Offense count: 4 |
| 103 | +Style/OpenStructUse: |
| 104 | + Exclude: |
| 105 | + - 'spec/grape-swagger/entities/response_model_spec.rb' |
| 106 | + - 'spec/support/shared_contexts/this_api.rb' |
0 commit comments