-
Notifications
You must be signed in to change notification settings - Fork 35
/
.rubocop_todo.yml
49 lines (43 loc) · 1.56 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
# This configuration was generated by
# `rubocop --auto-gen-config`
# on 2021-06-29 09:29:38 UTC using RuboCop version 0.89.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.
# Offense count: 1
Lint/ShadowingOuterLocalVariable:
Exclude:
- 'lib/ldap_fluff/ldap_fluff.rb'
# Offense count: 1
Lint/UselessAssignment:
Exclude:
- 'lib/ldap_fluff/ad_member_service.rb'
# Offense count: 2
# Configuration parameters: MinNameLength, AllowNamesEndingInNumbers, AllowedNames, ForbiddenNames.
# AllowedNames: at, by, db, id, in, io, ip, of, on, os, pp, to
Naming/MethodParameterName:
Exclude:
- 'lib/ldap_fluff/generic.rb'
- 'lib/ldap_fluff/generic_member_service.rb'
# Offense count: 3
# Configuration parameters: NamePrefix, ForbiddenPrefixes, AllowedMethods, MethodDefinitionMacros.
# NamePrefix: is_, has_, have_
# ForbiddenPrefixes: is_, has_, have_
# AllowedMethods: is_a?
# MethodDefinitionMacros: define_method, define_singleton_method
Naming/PredicateName:
Exclude:
- 'spec/**/*'
- 'lib/ldap_fluff/active_directory.rb'
- 'lib/ldap_fluff/generic.rb'
- 'lib/ldap_fluff/ldap_fluff.rb'
# Offense count: 2
# Configuration parameters: MinSize.
Performance/CollectionLiteralInLoop:
Exclude:
- 'lib/ldap_fluff/active_directory.rb'
Layout:
Exclude:
- 'lib/ldap_fluff/ad_member_service.rb'
- 'lib/ldap_fluff/generic_member_service.rb'