rubocop-traitify 1.0.0 → 1.1.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/config/rubocop-layout.yml +5 -5
- data/config/rubocop-todo.yml +3 -30
- data/lib/rubocop/traitify/version.rb +1 -1
- data/rubocop-traitify.gemspec +1 -1
- metadata +5 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: feda3746b63620b9eb532f8d1196d0ad0244a1fe601c295c3114dc8da374ca17
|
4
|
+
data.tar.gz: ffbd4c54880b60291905ac69967933fd70c3e399c8953b8468d067f661d11110
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c33aaaac1de66a37590caed20a0ceca2f540a1a62321e243e8278853faaf4583dd60a8fd2fa9ab64bc8d7996f9dff1751957b9e919c93dc9e7395946eb06ae0f
|
7
|
+
data.tar.gz: 199004e84c0d41784620b59cb0781c51774f68072681d30471d7987a92fd9274e2c99ecb001eb929923360664c3a8783251cd2820ef94e5f5dea52bb4cc4f5eb
|
data/config/rubocop-layout.yml
CHANGED
@@ -1,8 +1,4 @@
|
|
1
|
-
Layout/
|
2
|
-
Enabled: true
|
3
|
-
EnforcedStyle: with_fixed_indentation
|
4
|
-
|
5
|
-
Layout/AlignParameters:
|
1
|
+
Layout/ArgumentAlignment:
|
6
2
|
Enabled: true
|
7
3
|
EnforcedStyle: with_fixed_indentation
|
8
4
|
|
@@ -18,6 +14,10 @@ Layout/EndAlignment:
|
|
18
14
|
Enabled: true
|
19
15
|
EnforcedStyleAlignWith: start_of_line
|
20
16
|
|
17
|
+
Layout/ParameterAlignment:
|
18
|
+
Enabled: true
|
19
|
+
EnforcedStyle: with_fixed_indentation
|
20
|
+
|
21
21
|
Layout/SpaceBeforeBlockBraces:
|
22
22
|
Enabled: true
|
23
23
|
EnforcedStyle: no_space
|
data/config/rubocop-todo.yml
CHANGED
@@ -2,33 +2,6 @@
|
|
2
2
|
Airbnb/FactoryClassUseString:
|
3
3
|
Enabled: false
|
4
4
|
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
# Layout/IndentFirstArgument
|
9
|
-
# Layout/IndentFirstArrayElement
|
10
|
-
# Layout/IndentFirstHashElement
|
11
|
-
# Lint/DisjunctiveAssignmentInConstructor
|
12
|
-
# Lint/RedundantCopDisableDirective
|
13
|
-
# Lint/RedundantCopEnableDirective
|
14
|
-
# Lint/RedundantRequireStatement
|
15
|
-
# Lint/RedundantSplatExpansion
|
16
|
-
# Lint/SafeNavigationWithEmpty
|
17
|
-
# Lint/SendWithMixinArgument
|
18
|
-
# Style/DoubleCopDisableDirective
|
19
|
-
# Style/FloatDivision
|
20
|
-
# Style/MultilineWhenThen
|
21
|
-
# Style/NegatedUnless
|
22
|
-
# Style/RedundantCapital
|
23
|
-
# Style/RedundantCondition
|
24
|
-
# Style/RedundantInterpolation
|
25
|
-
# Style/RedundantPercentQ
|
26
|
-
# Style/RedundantSort
|
27
|
-
# Also added but default to disabled
|
28
|
-
# Bundler/GemComment
|
29
|
-
# Layout/HeredocArgumentClosingParenthesis
|
30
|
-
# Layout/MultilineArrayLineBreaks
|
31
|
-
# Layout/MultilineMethodArgumentLineBreaks
|
32
|
-
# Lint/HeredocMethodCallPosition
|
33
|
-
# Style/ConstantVisibility
|
34
|
-
# Style/MultilineMethodSignature
|
5
|
+
# Disabled until rubocop 1.7.0
|
6
|
+
Lint/BinaryOperatorWithIdenticalOperands:
|
7
|
+
Enabled: false
|
data/rubocop-traitify.gemspec
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: rubocop-traitify
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.1.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Tom Prats
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2022-03-23 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rubocop-airbnb
|
@@ -16,14 +16,14 @@ dependencies:
|
|
16
16
|
requirements:
|
17
17
|
- - "~>"
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version:
|
19
|
+
version: 4.0.0
|
20
20
|
type: :runtime
|
21
21
|
prerelease: false
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
23
23
|
requirements:
|
24
24
|
- - "~>"
|
25
25
|
- !ruby/object:Gem::Version
|
26
|
-
version:
|
26
|
+
version: 4.0.0
|
27
27
|
description: |2
|
28
28
|
Traitify's Ruby configuration for Rubocop. Heavily influenced by (as well as dependent on)
|
29
29
|
Airbnb's https://github.com/airbnb/ruby
|
@@ -66,7 +66,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
66
66
|
- !ruby/object:Gem::Version
|
67
67
|
version: '0'
|
68
68
|
requirements: []
|
69
|
-
rubygems_version: 3.
|
69
|
+
rubygems_version: 3.1.6
|
70
70
|
signing_key:
|
71
71
|
specification_version: 4
|
72
72
|
summary: Default Rubocop config for Traitify Apps
|