boxt_rubocop 2.14.2 → 2.14.3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/VERSION +1 -1
- data/config/default.yml +6 -2
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 4930d32ac2ae4cce380cb03073e1a578dd1598c8105e932a39c74eff6ac82924
|
4
|
+
data.tar.gz: 8c16eac6622a8c23c059e826cf015498ace5f3adb8f49fd2394588d3a36bbf24
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 3f132e7650c895b80e8493e4b7f45dec42664ae4c052f192221210aa2a00bcf309dc05c537867787c2d775ae5be2e6b189fdac2449e2d0f5e39174bac4ef35bc
|
7
|
+
data.tar.gz: 271d712286ae7f2aa581d3d00b741f0d8a939eb53a26d057f1dd1178c6d12c1147e2acd910d2ed10b526d9e83d83c44b804b8984d18c735c8cb5fd5b0247c6a0
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
2.14.
|
1
|
+
2.14.3
|
data/config/default.yml
CHANGED
@@ -8,11 +8,11 @@ AllCops:
|
|
8
8
|
NewCops: enable
|
9
9
|
|
10
10
|
Boxt/ApiPathFormat:
|
11
|
-
Description:
|
11
|
+
Description: "Ensure that the API path uses kebab case"
|
12
12
|
Enabled: false
|
13
13
|
|
14
14
|
Boxt/ApiTypeParameters:
|
15
|
-
Description:
|
15
|
+
Description: "Ensure that API parameters are typed"
|
16
16
|
Enabled: false
|
17
17
|
|
18
18
|
Layout/ClassStructure:
|
@@ -64,5 +64,9 @@ Style/Documentation:
|
|
64
64
|
Style/DoubleNegation:
|
65
65
|
Enabled: false
|
66
66
|
|
67
|
+
# Setting this to a max of 3 as 2 is too restrictive for some of our code
|
68
|
+
Style/SafeNavigationChainLength:
|
69
|
+
Max: 3
|
70
|
+
|
67
71
|
Style/StringLiterals:
|
68
72
|
EnforcedStyle: double_quotes
|