-
Notifications
You must be signed in to change notification settings - Fork 12
/
.rubocop.yml
72 lines (56 loc) · 1.26 KB
/
.rubocop.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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
inherit_gem:
rubocop-rock: defaults.yml
inherit_from: .rubocop_todo.yml
inherit_mode:
merge:
- Exclude
- AllowedNames
AllCops:
TargetRubyVersion: "2.5"
Exclude:
- "lib/roby/gui/**/*_ui.rb"
Naming/FileName:
Exclude:
- '.deep-cover.rb'
- 'lib/roby/gui/qt4_toMSecsSinceEpoch.rb'
- 'lib/yard-roby.rb'
Style/BlockComments:
Exclude:
# Auto-generated by moc
- lib/roby/gui/**/*_ui.rb
Style/CommentedKeyword:
Exclude:
# Auto-generated by moc
- lib/roby/gui/**/*_ui.rb
Style/MixinUsage:
Exclude:
- benchmark/**/*
Style/MultilineMemoization:
EnforcedStyle: braces
Style/StderrPuts:
Enabled: false
Naming/PredicateName:
Enabled: false
# Lots of false positive because of our class_eval-like blocks like e.g.
# new_submodel or stub. Propose a change to the cop's code to allow for
# custom methods before re-enabling
Lint/NestedMethodDefinition:
Enabled: false
Metrics/ModuleLength:
Exclude:
- '**/test/**/test_*.rb'
- '**/test/**/*_test.rb'
Metrics/BlockLength:
ExcludedMethods:
- describe
- it
Style/AccessModifierDeclarations:
Enabled: false
Naming/MethodParameterName:
AllowedNames:
- as
- kw
# Rubocop 1.50
#
Style/GlobalStdStream:
Enabled: false