-
Notifications
You must be signed in to change notification settings - Fork 14
/
.rubocop.yml
50 lines (38 loc) · 1 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
inherit_from: .rubocop_todo.yml
inherit_gem:
rubocop-rock: defaults.yml
inherit_mode:
merge:
- Exclude
- AllowedNames
AllCops:
TargetRubyVersion: "2.5"
Style/MultilineMemoization:
EnforcedStyle: braces
Style/StderrPuts:
Enabled: false
Naming/PredicateName:
Enabled: false
Naming/FileName:
Exclude:
- 'lib/yard-syskit.rb'
- 'test/roby_app/app/models/compositions/reload_ruby_task-1.rb'
- 'test/roby_app/app/models/compositions/reload_ruby_task-2.rb'
# 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
Style/AccessModifierDeclarations:
Enabled: false
Naming/MethodParameterName:
AllowedNames:
- as
- fd
Security/MarshalLoad:
Exclude:
- lib/syskit/roby_app/remote_processes/server.rb
- lib/syskit/roby_app/remote_processes/client.rb
Style/MultilineBlockChain:
Exclude:
- test/**/test_*.rb