immosquare-cleaner 0.1.41 → 0.1.42

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: 01c82857d6da3a08c5bf4e97043e83be5efc05b60108e68a0ea7e94d20e676c0
4
- data.tar.gz: 9f5e5070a54b139726ef1588608c08f9cf64d10e1f967647504bf0c30d26a2ea
3
+ metadata.gz: b404caad87c0136069bca1221e0fcf813085eb4747dbb71ec2d3554c436efd07
4
+ data.tar.gz: 2728a5b1e8b030ce9e5c3251ef3407683a5456db98ff5812eceec89308cfbb75
5
5
  SHA512:
6
- metadata.gz: 9a47d76e8bc9d738453ffc11e051b10c7286f42eedc0e81851beb1e204f9d785db4ef50eaf8e9c73e4fec0df5906c46d03e0a29546e97d2a948b7a73518abd07
7
- data.tar.gz: 2bbda26c51caa36b710673bf1d1d5d14c6aa2b85ed99e56820b9e8256ac110b0c9a28d8a78458e39425d31c584fa4a1495c406bb601b81d65daf19987e7ad4db
6
+ metadata.gz: 0dbabe286cc1fd43c72a8689d15acbc73331b33e17e9522e1a9f20aa8fb892fbd49183278eda32de2e8eed01255275e76c27ab810d51be31223c82371d9144aa
7
+ data.tar.gz: e58a91d734b8a26c0f62a0eeb7d07aeb44ba5fa3f296b2c916140ad31f96b2a5486df8f486c2bc649f0d87c075b81cb7d309775db2874a84f493c59fe1f807e2
@@ -1,3 +1,3 @@
1
1
  module ImmosquareCleaner
2
- VERSION = "0.1.41".freeze
2
+ VERSION = "0.1.42".freeze
3
3
  end
@@ -0,0 +1,89 @@
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
+ ActiveSupportExtensionsEnabled: true
9
+ TargetRubyVersion: 3.3.4
10
+ Metrics:
11
+ Enabled: false
12
+ Lint/UselessAssignment:
13
+ Enabled: false
14
+ Lint/RescueException:
15
+ Enabled: false
16
+ Lint/UnusedMethodArgument:
17
+ Enabled: false
18
+ Naming/VariableNumber:
19
+ Enabled: false
20
+ Naming/FileName:
21
+ Enabled: false
22
+ MethodParameterName:
23
+ MinNameLength: 1
24
+ Layout/LeadingEmptyLines:
25
+ Enabled: false
26
+ Layout/InitialIndentation:
27
+ Enabled: false
28
+ Layout/TrailingEmptyLines:
29
+ Enabled: false
30
+ Layout/ExtraSpacing:
31
+ Enabled: false
32
+ Layout/LineLength:
33
+ Enabled: false
34
+ Layout/TrailingWhitespace:
35
+ Enabled: true
36
+ Layout/EmptyLines:
37
+ Enabled: false
38
+ Layout/SpaceInsideBlockBraces:
39
+ SpaceBeforeBlockParameters: false
40
+ Layout/EmptyLinesAroundClassBody:
41
+ EnforcedStyle: empty_lines
42
+ Layout/FirstHashElementIndentation:
43
+ EnforcedStyle: consistent
44
+ Layout/ArgumentAlignment:
45
+ EnforcedStyle: with_fixed_indentation
46
+ Layout/HashAlignment:
47
+ EnforcedHashRocketStyle: table
48
+ Layout/MultilineAssignmentLayout:
49
+ EnforcedStyle: same_line
50
+ Layout/SpaceInsideHashLiteralBraces:
51
+ EnforcedStyle: no_space
52
+ Layout/MultilineMethodCallIndentation:
53
+ EnforcedStyle: indented
54
+ Style/RedundantBegin:
55
+ Enabled: false
56
+ Style/MultilineTernaryOperator:
57
+ Enabled: false
58
+ Style/NestedTernaryOperator:
59
+ Enabled: false
60
+ Style/MultilineIfModifier:
61
+ Enabled: false
62
+ Style/FrozenStringLiteralComment:
63
+ Enabled: false
64
+ Style/Next:
65
+ Enabled: false
66
+ Style/Documentation:
67
+ Enabled: false
68
+ Style/IfUnlessModifierOfIfUnless:
69
+ Enabled: false
70
+ Style/NegatedIf:
71
+ Enabled: false
72
+ Style/MethodCallWithArgsParentheses:
73
+ Enabled: true
74
+ Style/FormatStringToken:
75
+ EnforcedStyle: template
76
+ Style/NumericPredicate:
77
+ EnforcedStyle: comparison
78
+ Style/StringLiterals:
79
+ EnforcedStyle: double_quotes
80
+ Style/StringLiteralsInInterpolation:
81
+ EnforcedStyle: double_quotes
82
+ Style/HashSyntax:
83
+ EnforcedStyle: hash_rockets
84
+ Style/WordArray:
85
+ EnforcedStyle: brackets
86
+ Style/SymbolArray:
87
+ EnforcedStyle: brackets
88
+ Gemspec/RequireMFA:
89
+ Enabled: false
data/linters/rubocop.yml CHANGED
@@ -6,6 +6,7 @@ AllCops:
6
6
  EnabledByDefault: false
7
7
  UseCache: true
8
8
  SuggestExtensions: false
9
+ ActiveSupportExtensionsEnabled: true # Pour activer le support de ActiveSupport
9
10
 
10
11
  #################### Metrics ###########################
11
12
  Metrics:
@@ -111,7 +111,7 @@ import sonarjs from "eslint-plugin-sonarjs";
111
111
  ]
112
112
  ```
113
113
 
114
- For ESLint 8: add `plugins` option to your `.eslintrc` and `plugin:sonarjs/recommended` to the `extends` option to enable all recommended rules:
114
+ For ESLint 8: add `plugins` option to your `.eslintrc` and `plugin:sonarjs/recommended-legacy` to the `extends` option to enable all recommended rules:
115
115
 
116
116
  ```json
117
117
  {
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "eslint-plugin-sonarjs",
3
- "version": "1.0.3",
3
+ "version": "1.0.4",
4
4
  "description": "SonarJS rules for ESLint",
5
5
  "main": "lib/src/index.js",
6
6
  "types": "lib/src/index.d.ts",
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "eslint-plugin-sonarjs",
3
- "version": "1.0.3",
3
+ "version": "1.0.4",
4
4
  "description": "SonarJS rules for ESLint",
5
5
  "main": "lib/src/index.js",
6
6
  "types": "lib/src/index.d.ts",
data/package.json CHANGED
@@ -7,7 +7,7 @@
7
7
  "eslint-plugin-align-assignments": "^1.1.2",
8
8
  "eslint-plugin-align-import": "^1.0.0",
9
9
  "eslint-plugin-prefer-arrow": "^1.2.3",
10
- "eslint-plugin-sonarjs": "^1.0.3",
10
+ "eslint-plugin-sonarjs": "^1.0.4",
11
11
  "jscodeshift": "^0.16.1",
12
12
  "prettier": "^3.3.3"
13
13
  },
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.41
4
+ version: 0.1.42
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-07-15 00:00:00.000000000 Z
11
+ date: 2024-07-26 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: erb_lint
@@ -123,6 +123,7 @@ files:
123
123
  - linters/rubocop-3.2.2.yml
124
124
  - linters/rubocop-3.3.1.yml
125
125
  - linters/rubocop-3.3.3.yml
126
+ - linters/rubocop-3.3.4.yml
126
127
  - linters/rubocop.yml
127
128
  - linters/rubocop/cop/style/method_call_with_args_parentheses_override.rb
128
129
  - node_modules/.bin/acorn