rubocop-github 0.2.0 → 0.2.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/config/rails.yml +31 -0
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 58f2371509feb83a1349de2428eb93f2d73a18ab
|
4
|
+
data.tar.gz: ddf6f4ff64a2b6e21d7ed62ca54a13bd8ab6a09a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 60d9a270d4380f0589e38dff05933c5135a2348f7a5d160ba29bf8c09515fa6f80c976ec1eb48f6b5bb155a9593a82dd6acd5e6cafdda3a3bee293ab31e6bfa4
|
7
|
+
data.tar.gz: 13ce6c10ff598230b198ad7d2e843905270cae856900ce5d307944b390150cd8e25eb32ee1a24bcb151e2e70cf286bcef687f50241ace7cebbc109dca3d7933e
|
data/config/rails.yml
CHANGED
@@ -22,3 +22,34 @@ Rails/UniqBeforePluck:
|
|
22
22
|
|
23
23
|
GitHub/RailsApplicationRecord:
|
24
24
|
Enabled: true
|
25
|
+
|
26
|
+
|
27
|
+
# Exclude Rails ERB files from incompatible cops
|
28
|
+
|
29
|
+
Lint/BlockAlignment:
|
30
|
+
Exclude:
|
31
|
+
- 'app/views/**/*.erb'
|
32
|
+
|
33
|
+
Style/For:
|
34
|
+
Exclude:
|
35
|
+
- 'app/views/**/*.erb'
|
36
|
+
|
37
|
+
Style/OneLineConditional:
|
38
|
+
Exclude:
|
39
|
+
- 'app/views/**/*.erb'
|
40
|
+
|
41
|
+
Style/SpaceInsideParens:
|
42
|
+
Exclude:
|
43
|
+
- 'app/views/**/*.erb'
|
44
|
+
|
45
|
+
Style/StringLiterals:
|
46
|
+
Exclude:
|
47
|
+
- 'app/views/**/*.erb'
|
48
|
+
|
49
|
+
Style/TrailingBlankLines:
|
50
|
+
Exclude:
|
51
|
+
- 'app/views/**/*.erb'
|
52
|
+
|
53
|
+
Style/TrailingWhitespace:
|
54
|
+
Exclude:
|
55
|
+
- 'app/views/**/*.erb'
|