]> git.immae.eu Git - github/fretlink/pronto-hlint.git/blob - .rubocop.yml
update travis ruby versions
[github/fretlink/pronto-hlint.git] / .rubocop.yml
1 ---
2 AllCops:
3 DisplayCopNames: true
4 DisplayStyleGuide: true
5 TargetRubyVersion: 2.1.0
6
7 Documentation:
8 Enabled: false
9
10 Layout/ExtraSpacing:
11 ForceEqualSignAlignment: true
12
13 Layout/MultilineMethodCallIndentation:
14 Enabled: false
15
16 Lint/AmbiguousBlockAssociation:
17 Enabled: false
18
19 Metrics/AbcSize:
20 Max: 40
21
22 Metrics/BlockLength:
23 Enabled: false
24
25 Metrics/ClassLength:
26 Max: 200
27
28 Metrics/CyclomaticComplexity:
29 Max: 15
30
31 Metrics/LineLength:
32 Max: 120
33
34 Metrics/MethodLength:
35 Max: 30
36
37 Metrics/ParameterLists:
38 Max: 10
39
40 Rails:
41 Enabled: true
42
43 Rails/InverseOf:
44 Enabled: false
45
46 Rails/LexicallyScopedActionFilter:
47 Enabled: false
48
49 Rails/SkipsModelValidations:
50 Enabled: false
51
52 Rails/UnknownEnv:
53 Enabled: false
54
55 Style/FormatStringToken:
56 Enabled: false