standard-rspec 0.1.4 → 0.1.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 0167c561b676fc8e9fb04eefbc84caad20df4c07d1d933ef2b1bf670fb61b557
|
|
4
|
+
data.tar.gz: f096a118e1cb6828de8ef2e769b8ac8a941c6dfaf50aa4a3b2bd7bbe5bbedf7a
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: b5735f3b982241989e5d67e9641a89d7b4f8636f137367353305482f9f19225d50e6374820567d4fe29ad094c99630914fac45f0c8349ff6d4aa4c38140a95d7
|
|
7
|
+
data.tar.gz: 6a47e57eb27ddddf332f36079e0e37392d1e10732ec0e65217fe54463c4488b849e3d9606f6c673bbbb24ba2f87a348e25743ccb014d2f0adcb13c6a654a873d
|
data/config/base.yml
CHANGED
|
@@ -773,10 +773,9 @@ Capybara/VisibilityMatcher:
|
|
|
773
773
|
VersionChanged: '2.0'
|
|
774
774
|
StyleGuide: https://www.rubydoc.info/gems/rubocop-rspec/RuboCop/Cop/RSpec/Capybara/VisibilityMatcher
|
|
775
775
|
|
|
776
|
-
|
|
776
|
+
FactoryBot:
|
|
777
777
|
Enabled: true
|
|
778
778
|
Include: *1
|
|
779
|
-
Language: *2
|
|
780
779
|
|
|
781
780
|
FactoryBot/AttributeDefinedStatically:
|
|
782
781
|
Description: Always declare attribute values as blocks.
|
|
@@ -29,8 +29,6 @@ require require_path.join("rubocop/rspec/wording")
|
|
|
29
29
|
# Dependent on `RuboCop::RSpec::Language::NodePattern`.
|
|
30
30
|
require require_path.join("rubocop/rspec/language")
|
|
31
31
|
|
|
32
|
-
require require_path.join("rubocop/rspec/factory_bot/language")
|
|
33
|
-
|
|
34
32
|
require require_path.join("rubocop/cop/rspec/mixin/final_end_location")
|
|
35
33
|
require require_path.join("rubocop/cop/rspec/mixin/inside_example_group")
|
|
36
34
|
require require_path.join("rubocop/cop/rspec/mixin/location_help")
|
|
@@ -50,7 +48,6 @@ require require_path.join("rubocop/rspec/concept")
|
|
|
50
48
|
require require_path.join("rubocop/rspec/corrector/move_node")
|
|
51
49
|
require require_path.join("rubocop/rspec/example")
|
|
52
50
|
require require_path.join("rubocop/rspec/example_group")
|
|
53
|
-
require require_path.join("rubocop/rspec/factory_bot")
|
|
54
51
|
require require_path.join("rubocop/rspec/hook")
|
|
55
52
|
|
|
56
53
|
# RuboCop::RSpec::Inject.defaults!
|