-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy path.rubocop_todo.yml
54 lines (46 loc) · 1.77 KB
/
.rubocop_todo.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
# This configuration was generated by
# `rubocop --auto-gen-config --no-offense-counts --no-auto-gen-timestamp`
# using RuboCop version 1.28.1.
# The point is for the user to remove these configuration records
# one by one as the offenses are removed from the code base.
# Note that changes in the inspected code, or installation of new
# versions of RuboCop, may require this file to be generated again.
Lint/MissingSuper:
Exclude:
- 'lib/ffi-gobject/ruby_closure.rb'
- 'lib/gir_ffi/builders/user_defined_builder.rb'
- 'lib/gir_ffi/struct_like_base.rb'
- 'test/minitest/stats_plugin.rb'
# Configuration parameters: CountComments, CountAsOne.
Metrics/ClassLength:
Max: 181
# Configuration parameters: CountComments, CountAsOne, ExcludedMethods, IgnoredMethods.
Metrics/MethodLength:
Max: 15
# Configuration parameters: CountComments, CountAsOne.
Metrics/ModuleLength:
Max: 216
# Configuration parameters: EnforcedStyleForLeadingUnderscores.
# SupportedStylesForLeadingUnderscores: disallowed, required, optional
Naming/MemoizedInstanceVariableName:
Exclude:
- 'lib/ffi-glib/main_loop.rb'
- 'lib/ffi-gobject_introspection/i_type_info.rb'
- 'lib/gir_ffi/builders/constant_builder.rb'
- 'lib/gir_ffi/builders/user_defined_builder.rb'
# This cop supports safe auto-correction (--auto-correct).
# Configuration parameters: EnforcedStyle.
# SupportedStyles: literals, strict
Style/MutableConstant:
Exclude:
- 'lib/ffi-glib/main_loop.rb'
- 'lib/ffi-gobject/ruby_closure.rb'
- 'lib/gir_ffi/builders/type_builder.rb'
Style/OptionalArguments:
Exclude:
- 'lib/ffi-glib/container_class_methods.rb'
# Configuration parameters: AllowedMethods.
# AllowedMethods: respond_to_missing?
Style/OptionalBooleanParameter:
Exclude:
- 'lib/ffi-gobject.rb'