seira 0.8.1 → 0.8.3

Sign up to get free protection for your applications and to get access to all the features.
data/.rubocop.yml DELETED
@@ -1,112 +0,0 @@
1
- AllCops:
2
- Exclude:
3
- - bin/**/*
4
-
5
- TargetRubyVersion: 2.5.3
6
-
7
- Rails:
8
- Enabled: false
9
-
10
- Style/CollectionMethods:
11
- Enabled: true
12
- PreferredMethods:
13
- collect: 'map'
14
- collect!: 'map!'
15
- inject: 'reduce'
16
-
17
- Style/FrozenStringLiteralComment:
18
- Enabled: false
19
-
20
- Layout/AccessModifierIndentation:
21
- Enabled: false
22
-
23
- Style/BlockDelimiters:
24
- Enabled: false
25
-
26
- Style/BracesAroundHashParameters:
27
- Enabled: false
28
-
29
- Style/Documentation:
30
- Enabled: false # Was annoying, not needed
31
-
32
- Layout/DotPosition:
33
- EnforcedStyle: trailing
34
-
35
- Naming/FileName:
36
- Enabled: false # is really annoying and not good
37
-
38
- Style/GuardClause:
39
- Enabled: false
40
-
41
- Style/Not:
42
- Enabled: false
43
-
44
- Style/NumericPredicate:
45
- Enabled: false
46
-
47
- Style/RedundantSelf:
48
- Enabled: false
49
-
50
- Style/SignalException:
51
- Enabled: false
52
-
53
- Style/StringLiterals:
54
- Enabled: false
55
-
56
- Style/TrailingCommaInArrayLiteral:
57
- Enabled: false
58
-
59
- Style/TrailingCommaInHashLiteral:
60
- Enabled: false
61
-
62
- Style/TrailingCommaInArguments:
63
- Enabled: false
64
-
65
- Style/SymbolArray:
66
- Enabled: false
67
-
68
- Metrics/AbcSize:
69
- Enabled: false
70
-
71
- Metrics/BlockLength:
72
- Exclude:
73
- - 'spec/**/*'
74
-
75
- Metrics/ClassLength:
76
- Enabled: false
77
-
78
- Metrics/CyclomaticComplexity:
79
- Enabled: false
80
-
81
- Metrics/LineLength:
82
- Enabled: false
83
-
84
- Metrics/MethodLength:
85
- Enabled: false
86
-
87
- Metrics/PerceivedComplexity:
88
- Enabled: false
89
-
90
- Lint/UselessAssignment:
91
- Enabled: false
92
-
93
- Rails/Delegate:
94
- Enabled: false
95
-
96
- Rails/HasAndBelongsToMany:
97
- Enabled: false
98
-
99
- Rails/Output:
100
- Enabled: false # we use puts for things like migrations
101
-
102
- Rails/Blank:
103
- Enabled: false
104
-
105
- # We copy the 'default.yml' file provided by rubocop gem repo into the config/rubocop.yml file
106
- # in order to make upgrades easy (just drop the new default in). This ensures we get the lastest
107
- # config file when we upgrade with all new cops.
108
- # Any non-default configuration should go into this file so that when we upgrade the dropped in
109
- # new default file does not override any of our configurations.
110
- # NOTE: Inorder to prioritize this file's declaration, we must inherit at bottom of file
111
- inherit_from:
112
- - .default-rubocop.yml