-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy path.rubocop_rspec.yml
58 lines (42 loc) · 1.04 KB
/
.rubocop_rspec.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
##
# Standard based Rubocop config suggested by Evil Martians.
# - https://evilmartians.com/chronicles/rubocoping-with-legacy-bring-your-ruby-code-up-to-standard
# - https://github.com/testdouble/standard
#
# Copied without any modifications from:
# https://gist.github.com/palkan/623c0816b05ed246bfe0cb406050990a
#
require:
- rubocop-rspec
RSpec/Focus:
Enabled: true
RSpec/EmptyExampleGroup:
Enabled: true
RSpec/EmptyLineAfterExampleGroup:
Enabled: true
RSpec/EmptyLineAfterFinalLet:
Enabled: true
RSpec/EmptyLineAfterHook:
Enabled: true
RSpec/EmptyLineAfterSubject:
Enabled: true
RSpec/HookArgument:
Enabled: true
RSpec/HooksBeforeExamples:
Enabled: true
RSpec/ImplicitExpect:
Enabled: true
RSpec/IteratedExpectation:
Enabled: true
RSpec/LetBeforeExamples:
Enabled: true
RSpec/MissingExampleGroupArgument:
Enabled: true
RSpec/ReceiveCounts:
Enabled: true
RSpec/Capybara/CurrentPathExpectation:
Enabled: true
RSpec/FactoryBot/AttributeDefinedStatically:
Enabled: true
RSpec/FactoryBot/CreateList:
Enabled: true