-
Notifications
You must be signed in to change notification settings - Fork 2
/
bixby_rails_enabled.yml
96 lines (67 loc) · 1.33 KB
/
bixby_rails_enabled.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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
---
require: rubocop-rails
Rails:
Enabled: true
Rails/ActionFilter:
Enabled: true
Rails/Date:
Enabled: true
Rails/Delegate:
Enabled: true
Rails/DelegateAllowBlank:
Enabled: true
# This one breaks things unexpectedly.
# E.g., it changes ISO_639.find_by_code(language_code) to ISO_639.find_by(code: language_code)
# which results in an error.
Rails/DynamicFindBy:
Enabled: false
Rails/EnumUniqueness:
Enabled: true
Rails/Exit:
Enabled: true
Rails/FilePath:
Enabled: true
EnforcedStyle: arguments
Rails/FindBy:
Enabled: true
Rails/FindEach:
Enabled: true
Rails/HasAndBelongsToMany:
Enabled: true
Rails/HelperInstanceVariable:
Enabled: false
Rails/HttpPositionalArguments:
Enabled: true
Include:
- 'spec/**/*'
- 'test/**/*'
Rails/InverseOf:
Enabled: false
Rails/LexicallyScopedActionFilter:
Enabled: false
Rails/NotNullColumn:
Enabled: true
Rails/Output:
Enabled: true
Rails/OutputSafety:
Enabled: true
Rails/PluralizationGrammar:
Enabled: true
Rails/ReadWriteAttribute:
Enabled: true
Rails/RequestReferer:
Enabled: true
Rails/ReversibleMigration:
Enabled: true
Rails/SafeNavigation:
Enabled: true
Rails/ScopeArgs:
Enabled: true
Rails/TimeZone:
Enabled: true
Rails/UniqBeforePluck:
Enabled: true
Rails/SkipsModelValidations:
Enabled: true
Rails/Validation:
Enabled: true