rubocop-javierav 0.0.1 → 0.0.2

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.
Files changed (3) hide show
  1. checksums.yaml +4 -4
  2. data/rubocop.yml +67 -0
  3. metadata +2 -1
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 0b810a3ad57400c58331f324c065c0a40d53d6b09762db52ddf1bbba3b280fb1
4
- data.tar.gz: a4026ede182dcf544ee5f7d6b47e5ce3e5f6518592d9a5c0974a863828f24fe7
3
+ metadata.gz: 74275a98a4f09db250516d617a834232448992da1c89cfea63727de4ad543504
4
+ data.tar.gz: 5f25f25c225d9655f8c8299a2bad64ee7310db5d1313ef1bca48386e83565426
5
5
  SHA512:
6
- metadata.gz: c034e65b963981a901369d47e38af5587c589da80196fc62ddf99815b73255de9e354f60b51cdb7daa55bb460edd863df12cf943c57f7a5e644bcd680b1455c1
7
- data.tar.gz: fe24477f321f6ddc04d4b91a9cd15bd4fea690642e449330e7a908364c37e9cd6be4f1d2b66ae0da570a9d571eaff3b6a65f3b8cc196261e7fda7f120330991f
6
+ metadata.gz: d35c47cf3e311af0f38fe3b76cab08a21b230234fb11a1e53f38a315562adea4310a8c5a191fda4e34cb31a343913eb36930f8ec1582528ca34954469657d9f5
7
+ data.tar.gz: dd7d57b6662c4533e5f368a7670fe7d236695abea4a3fa593a2d7d4e0d6daec6d68de40e21b13c8bf16b53d554b6f3aaa3535069cce482f56a4ec4cf40ddc1c1
data/rubocop.yml ADDED
@@ -0,0 +1,67 @@
1
+ plugins:
2
+ - rubocop-capybara
3
+ - rubocop-minitest
4
+ - rubocop-performance
5
+ - rubocop-rails
6
+
7
+ inherit_mode:
8
+ merge:
9
+ - Exclude
10
+
11
+ AllCops:
12
+ Exclude:
13
+ - "**/bin/**/*"
14
+ DisplayCopNames: true
15
+ DisplayStyleGuide: true
16
+ NewCops: enable
17
+ SuggestExtensions: true
18
+
19
+ Layout/ArgumentAlignment:
20
+ EnforcedStyle: with_fixed_indentation
21
+ Layout/EndAlignment:
22
+ EnforcedStyleAlignWith: variable
23
+ Layout/MultilineMethodCallIndentation:
24
+ EnforcedStyle: indented
25
+
26
+ Metrics/AbcSize:
27
+ Enabled: false
28
+ Metrics/BlockLength:
29
+ Enabled: false
30
+ Metrics/ClassLength:
31
+ Enabled: false
32
+ Metrics/CyclomaticComplexity:
33
+ Enabled: false
34
+ Metrics/MethodLength:
35
+ Enabled: false
36
+ Metrics/ModuleLength:
37
+ Enabled: false
38
+ Metrics/PerceivedComplexity:
39
+ Enabled: false
40
+
41
+ Minitest/MultipleAssertions:
42
+ Enabled: false
43
+
44
+ Performance/CollectionLiteralInLoop:
45
+ Exclude:
46
+ - "**/test/**/*"
47
+ Performance/StringIdentifierArgument:
48
+ Enabled: false
49
+ Performance/UnfreezeString:
50
+ Enabled: false
51
+
52
+ Rails/LexicallyScopedActionFilter:
53
+ Enabled: false
54
+ Rails/HttpStatus:
55
+ EnforcedStyle: numeric
56
+ Rails/SkipsModelValidations:
57
+ AllowedMethods:
58
+ - touch
59
+
60
+ Style/ClassAndModuleChildren:
61
+ EnforcedStyle: compact
62
+ Style/Documentation:
63
+ Enabled: false
64
+ Style/FrozenStringLiteralComment:
65
+ EnforcedStyle: never
66
+ Style/StringLiterals:
67
+ EnforcedStyle: double_quotes
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rubocop-javierav
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.1
4
+ version: 0.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Javier Aranda
@@ -87,6 +87,7 @@ files:
87
87
  - LICENSE
88
88
  - README.md
89
89
  - lib/rubocop-javierav.rb
90
+ - rubocop.yml
90
91
  homepage: https://github.com/javierav/rubocop-javierav
91
92
  licenses:
92
93
  - MIT