Son aktivite 1759005880

Revizyon 83cee5a18a7473d2dcb4c180d70b5b5f79c70e62

.rubocop.yml Ham
1AllCops:
2 Exclude:
3 - "**/*.erb"
4 - bin/*
5 - db/*schema.rb
6 NewCops: enable
7
8Layout/ArgumentAlignment:
9 EnforcedStyle: with_fixed_indentation
10
11Layout/FirstArgumentIndentation:
12 EnforcedStyle: consistent
13
14Layout/FirstArrayElementIndentation:
15 EnforcedStyle: consistent
16
17Layout/FirstArrayElementLineBreak:
18 Enabled: true
19
20Layout/FirstHashElementIndentation:
21 EnforcedStyle: consistent
22
23Layout/FirstHashElementLineBreak:
24 Enabled: true
25
26Layout/FirstMethodArgumentLineBreak:
27 Enabled: true
28
29Layout/FirstMethodParameterLineBreak:
30 Enabled: true
31
32Layout/FirstParameterIndentation:
33 EnforcedStyle: consistent
34
35Layout/LineLength:
36 Max: 120
37
38Layout/MultilineArrayLineBreaks:
39 Enabled: true
40
41Layout/MultilineHashKeyLineBreaks:
42 Enabled: true
43
44Layout/MultilineMethodArgumentLineBreaks:
45 Enabled: true
46
47Layout/MultilineMethodParameterLineBreaks:
48 Enabled: true
49
50Layout/ParameterAlignment:
51 EnforcedStyle: with_fixed_indentation
52
53Lint/MissingSuper:
54 Enabled: false
55
56Metrics/AbcSize:
57 Enabled: false
58
59Metrics/BlockLength:
60 Enabled: false
61
62Metrics/ClassLength:
63 Enabled: false
64
65Metrics/MethodLength:
66 Enabled: false
67
68Style/BlockDelimiters:
69 Enabled: false
70
71Style/ClassAndModuleChildren:
72 Enabled: false
73
74Style/Documentation:
75 Enabled: false
76
77Style/FrozenStringLiteralComment:
78 Enabled: false
79