immosquare-cleaner 0.1.30 → 0.1.31

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 1c884a38e34b2f3fc784153ebaa4bb044994a6ab9308740892c567a694cfa151
4
- data.tar.gz: 1a679bd7ba73b6299d5eaf2a93b1026d281ae23d104483b00dab0da9f1731f1e
3
+ metadata.gz: 6c28e7be46dd847b08be778731fcae70c8be7b942070d7019b7dc289b133fb49
4
+ data.tar.gz: 2500a66e9429c95ea6d03aa1ceddd2504272d2eaf86a9d9e552ba00814f27e0e
5
5
  SHA512:
6
- metadata.gz: 3ff7c027a62960d6b739430d5fb68af6645fe220ca6588d57e1d539bd5f083a696b1fc3a838d430435fe29269d2d7c44c290f09f8221539cb0dcd1ff3f257c46
7
- data.tar.gz: dc7437de3ad9cd1fc05321b2b091ef1d5aba188efcc4e1f46f64033012cb6959b1ad05a82111dbfdf3bd449afe8baa5e3c2f524bde66d242c72a25d1ec4c1897
6
+ metadata.gz: 8372300b446ec7a60bc24b4b417d7d4d780182420e42f4a84b217d5bc17ebbea51546c7278d96a1932e6b93774c87219035b6f4bc90a744e6dedfdfc98992722
7
+ data.tar.gz: f08b4f7674f8bca77c4ca24aa48454248976dff9439bf634f04051cd464c1b2d4c516b6cadef889e982c1793f85476d3abc40a29eea40bcc37e72710cb109336
@@ -1,3 +1,3 @@
1
1
  module ImmosquareCleaner
2
- VERSION = "0.1.30".freeze
2
+ VERSION = "0.1.31".freeze
3
3
  end
@@ -1,4 +1,5 @@
1
1
  require "English"
2
+ require "yaml"
2
3
  require "immosquare-yaml"
3
4
  require "immosquare-extensions"
4
5
  require_relative "immosquare-cleaner/configuration"
@@ -0,0 +1,86 @@
1
+ ---
2
+ require: rubocop/cop/style/method_call_with_args_parentheses_override
3
+ AllCops:
4
+ NewCops: enable
5
+ EnabledByDefault: false
6
+ UseCache: true
7
+ SuggestExtensions: false
8
+ TargetRubyVersion: 2.7.6
9
+ Metrics:
10
+ Enabled: false
11
+ Lint/UselessAssignment:
12
+ Enabled: false
13
+ Lint/RescueException:
14
+ Enabled: false
15
+ Lint/UnusedMethodArgument:
16
+ Enabled: false
17
+ Naming/VariableNumber:
18
+ Enabled: false
19
+ Naming/FileName:
20
+ Enabled: false
21
+ Layout/LeadingEmptyLines:
22
+ Enabled: false
23
+ Layout/InitialIndentation:
24
+ Enabled: false
25
+ Layout/TrailingEmptyLines:
26
+ Enabled: false
27
+ Layout/ExtraSpacing:
28
+ Enabled: false
29
+ Layout/LineLength:
30
+ Enabled: false
31
+ Layout/TrailingWhitespace:
32
+ Enabled: true
33
+ Layout/EmptyLines:
34
+ Enabled: false
35
+ Layout/SpaceInsideBlockBraces:
36
+ SpaceBeforeBlockParameters: false
37
+ Layout/EmptyLinesAroundClassBody:
38
+ EnforcedStyle: empty_lines
39
+ Layout/FirstHashElementIndentation:
40
+ EnforcedStyle: consistent
41
+ Layout/ArgumentAlignment:
42
+ EnforcedStyle: with_fixed_indentation
43
+ Layout/HashAlignment:
44
+ EnforcedHashRocketStyle: table
45
+ Layout/MultilineAssignmentLayout:
46
+ EnforcedStyle: same_line
47
+ Layout/SpaceInsideHashLiteralBraces:
48
+ EnforcedStyle: no_space
49
+ Layout/MultilineMethodCallIndentation:
50
+ EnforcedStyle: indented
51
+ Style/RedundantBegin:
52
+ Enabled: false
53
+ Style/MultilineTernaryOperator:
54
+ Enabled: false
55
+ Style/NestedTernaryOperator:
56
+ Enabled: false
57
+ Style/MultilineIfModifier:
58
+ Enabled: false
59
+ Style/FrozenStringLiteralComment:
60
+ Enabled: false
61
+ Style/Next:
62
+ Enabled: false
63
+ Style/Documentation:
64
+ Enabled: false
65
+ Style/IfUnlessModifierOfIfUnless:
66
+ Enabled: false
67
+ Style/NegatedIf:
68
+ Enabled: false
69
+ Style/MethodCallWithArgsParentheses:
70
+ Enabled: true
71
+ Style/FormatStringToken:
72
+ EnforcedStyle: template
73
+ Style/NumericPredicate:
74
+ EnforcedStyle: comparison
75
+ Style/StringLiterals:
76
+ EnforcedStyle: double_quotes
77
+ Style/StringLiteralsInInterpolation:
78
+ EnforcedStyle: double_quotes
79
+ Style/HashSyntax:
80
+ EnforcedStyle: hash_rockets
81
+ Style/WordArray:
82
+ EnforcedStyle: brackets
83
+ Style/SymbolArray:
84
+ EnforcedStyle: brackets
85
+ Gemspec/RequireMFA:
86
+ Enabled: false
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: immosquare-cleaner
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.30
4
+ version: 0.1.31
5
5
  platform: ruby
6
6
  authors:
7
7
  - IMMO SQUARE
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-03-15 00:00:00.000000000 Z
11
+ date: 2024-03-18 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: erb_lint
@@ -118,6 +118,7 @@ files:
118
118
  - linters/erb-lint.yml
119
119
  - linters/eslintrc.json
120
120
  - linters/prettier.yml
121
+ - linters/rubocop-2.7.6.yml
121
122
  - linters/rubocop-3.2.2.yml
122
123
  - linters/rubocop.yml
123
124
  - linters/rubocop/cop/style/method_call_with_args_parentheses_override.rb