immosquare-cleaner 0.1.63 → 0.1.64

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 (45) hide show
  1. checksums.yaml +4 -4
  2. data/lib/immosquare-cleaner/version.rb +1 -1
  3. data/lib/immosquare-cleaner.rb +2 -2
  4. data/linters/rubocop/cop/custom_cops/style/font_awesome_normalization.rb +104 -0
  5. data/linters/rubocop-3.4.1.yml +3 -1
  6. data/linters/rubocop.yml +4 -0
  7. data/node_modules/@eslint/config-helpers/LICENSE +201 -0
  8. data/node_modules/@eslint/config-helpers/README.md +97 -0
  9. data/node_modules/@eslint/config-helpers/dist/cjs/index.cjs +546 -0
  10. data/node_modules/@eslint/config-helpers/dist/cjs/index.d.cts +22 -0
  11. data/node_modules/@eslint/config-helpers/dist/cjs/types.cts +31 -0
  12. data/node_modules/@eslint/config-helpers/dist/esm/index.d.ts +22 -0
  13. data/node_modules/@eslint/config-helpers/dist/esm/index.js +544 -0
  14. data/node_modules/@eslint/config-helpers/dist/esm/types.d.ts +23 -0
  15. data/node_modules/@eslint/config-helpers/dist/esm/types.ts +31 -0
  16. data/node_modules/@eslint/config-helpers/package.json +60 -0
  17. data/node_modules/@eslint/js/package.json +1 -1
  18. data/node_modules/eslint/README.md +6 -4
  19. data/node_modules/eslint/lib/config-api.js +12 -0
  20. data/node_modules/eslint/lib/languages/js/source-code/source-code.js +18 -14
  21. data/node_modules/eslint/lib/rules/no-console.js +19 -11
  22. data/node_modules/eslint/lib/rules/no-native-reassign.js +1 -1
  23. data/node_modules/eslint/lib/rules/no-negated-in-lhs.js +1 -1
  24. data/node_modules/eslint/lib/types/config-api.d.ts +8 -0
  25. data/node_modules/eslint/lib/types/rules.d.ts +5199 -0
  26. data/node_modules/eslint/package.json +14 -6
  27. data/node_modules/eslint-scope/README.md +4 -3
  28. data/node_modules/eslint-scope/dist/eslint-scope.cjs +59 -2
  29. data/node_modules/eslint-scope/lib/index.js +1 -0
  30. data/node_modules/eslint-scope/lib/referencer.js +52 -0
  31. data/node_modules/eslint-scope/lib/scope-manager.js +4 -0
  32. data/node_modules/eslint-scope/lib/scope.js +1 -1
  33. data/node_modules/eslint-scope/lib/version.js +1 -1
  34. data/node_modules/eslint-scope/package.json +1 -1
  35. data/package.json +2 -2
  36. metadata +16 -11
  37. data/node_modules/eslint/lib/types/rules/best-practices.d.ts +0 -1143
  38. data/node_modules/eslint/lib/types/rules/deprecated.d.ts +0 -252
  39. data/node_modules/eslint/lib/types/rules/ecmascript-6.d.ts +0 -647
  40. data/node_modules/eslint/lib/types/rules/index.d.ts +0 -50
  41. data/node_modules/eslint/lib/types/rules/node-commonjs.d.ts +0 -171
  42. data/node_modules/eslint/lib/types/rules/possible-errors.d.ts +0 -685
  43. data/node_modules/eslint/lib/types/rules/strict-mode.d.ts +0 -38
  44. data/node_modules/eslint/lib/types/rules/stylistic-issues.d.ts +0 -2043
  45. data/node_modules/eslint/lib/types/rules/variables.d.ts +0 -234
@@ -1,252 +0,0 @@
1
- /**
2
- * @fileoverview This file contains the rule types for ESLint. It was initially extracted
3
- * from the `@types/eslint` package.
4
- */
5
-
6
- /*
7
- * MIT License
8
- * Copyright (c) Microsoft Corporation.
9
- *
10
- * Permission is hereby granted, free of charge, to any person obtaining a copy
11
- * of this software and associated documentation files (the "Software"), to deal
12
- * in the Software without restriction, including without limitation the rights
13
- * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
14
- * copies of the Software, and to permit persons to whom the Software is
15
- * furnished to do so, subject to the following conditions:
16
- * The above copyright notice and this permission notice shall be included in all
17
- * copies or substantial portions of the Software.
18
- *
19
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
20
- * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
21
- * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
22
- * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
23
- * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
24
- * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
25
- * SOFTWARE
26
- */
27
-
28
- import { Linter } from "../index";
29
-
30
- export interface Deprecated extends Linter.RulesRecord {
31
-
32
- /**
33
- * Rule to enforce line breaks between arguments of a function call.
34
- *
35
- * @since 6.2.0
36
- * @deprecated since 8.53.0, please use the [corresponding rule](https://eslint.style/rules/js/function-call-argument-newline) in `@stylistic/eslint-plugin-js`.
37
- * @see https://eslint.org/docs/latest/rules/function-call-argument-newline
38
- */
39
- "function-call-argument-newline": Linter.RuleEntry<
40
- [
41
- /**
42
- * @default "always"
43
- */
44
- "always" | "never" | "consistent"
45
- ]
46
- >;
47
-
48
- /**
49
- * Rule to enforce consistent indentation.
50
- *
51
- * @since 4.0.0-alpha.0
52
- * @deprecated since 4.0.0, use [`indent`](https://eslint.org/docs/rules/indent) instead.
53
- * @see https://eslint.org/docs/latest/rules/indent-legacy
54
- */
55
- "indent-legacy": Linter.RuleEntry<
56
- [
57
- number | "tab",
58
- Partial<{
59
- /**
60
- * @default 0
61
- */
62
- SwitchCase: number;
63
- /**
64
- * @default 1
65
- */
66
- VariableDeclarator:
67
- | Partial<{
68
- /**
69
- * @default 1
70
- */
71
- var: number | "first";
72
- /**
73
- * @default 1
74
- */
75
- let: number | "first";
76
- /**
77
- * @default 1
78
- */
79
- const: number | "first";
80
- }>
81
- | number
82
- | "first";
83
- /**
84
- * @default 1
85
- */
86
- outerIIFEBody: number;
87
- /**
88
- * @default 1
89
- */
90
- MemberExpression: number | "off";
91
- /**
92
- * @default { parameters: 1, body: 1 }
93
- */
94
- FunctionDeclaration: Partial<{
95
- /**
96
- * @default 1
97
- */
98
- parameters: number | "first" | "off";
99
- /**
100
- * @default 1
101
- */
102
- body: number;
103
- }>;
104
- /**
105
- * @default { parameters: 1, body: 1 }
106
- */
107
- FunctionExpression: Partial<{
108
- /**
109
- * @default 1
110
- */
111
- parameters: number | "first" | "off";
112
- /**
113
- * @default 1
114
- */
115
- body: number;
116
- }>;
117
- /**
118
- * @default { arguments: 1 }
119
- */
120
- CallExpression: Partial<{
121
- /**
122
- * @default 1
123
- */
124
- arguments: number | "first" | "off";
125
- }>;
126
- /**
127
- * @default 1
128
- */
129
- ArrayExpression: number | "first" | "off";
130
- /**
131
- * @default 1
132
- */
133
- ObjectExpression: number | "first" | "off";
134
- /**
135
- * @default 1
136
- */
137
- ImportDeclaration: number | "first" | "off";
138
- /**
139
- * @default false
140
- */
141
- flatTernaryExpressions: boolean;
142
- ignoredNodes: string[];
143
- /**
144
- * @default false
145
- */
146
- ignoreComments: boolean;
147
- }>,
148
- ]
149
- >;
150
-
151
- /**
152
- * Rule to require or disallow newlines around directives.
153
- *
154
- * @since 3.5.0
155
- * @deprecated since 4.0.0, use [`padding-line-between-statements`](https://eslint.org/docs/rules/padding-line-between-statements) instead.
156
- * @see https://eslint.org/docs/latest/rules/lines-around-directive
157
- */
158
- "lines-around-directive": Linter.RuleEntry<["always" | "never"]>;
159
-
160
- /**
161
- * Rule to require or disallow an empty line after variable declarations.
162
- *
163
- * @since 0.18.0
164
- * @deprecated since 4.0.0, use [`padding-line-between-statements`](https://eslint.org/docs/rules/padding-line-between-statements) instead.
165
- * @see https://eslint.org/docs/latest/rules/newline-after-var
166
- */
167
- "newline-after-var": Linter.RuleEntry<["always" | "never"]>;
168
-
169
- /**
170
- * Rule to require an empty line before `return` statements.
171
- *
172
- * @since 2.3.0
173
- * @deprecated since 4.0.0, use [`padding-line-between-statements`](https://eslint.org/docs/rules/padding-line-between-statements) instead.
174
- * @see https://eslint.org/docs/latest/rules/newline-before-return
175
- */
176
- "newline-before-return": Linter.RuleEntry<[]>;
177
-
178
- /**
179
- * Rule to disallow `catch` clause parameters from shadowing variables in the outer scope.
180
- *
181
- * @since 0.0.9
182
- * @deprecated since 5.1.0, use [`no-shadow`](https://eslint.org/docs/rules/no-shadow) instead.
183
- * @see https://eslint.org/docs/latest/rules/no-catch-shadow
184
- */
185
- "no-catch-shadow": Linter.RuleEntry<[]>;
186
-
187
- /**
188
- * Rule to disallow assignments to native objects or read-only global variables.
189
- *
190
- * @since 0.0.9
191
- * @deprecated since 3.3.0, use [`no-global-assign`](https://eslint.org/docs/rules/no-global-assign) instead.
192
- * @see https://eslint.org/docs/latest/rules/no-native-reassign
193
- */
194
- "no-native-reassign": Linter.RuleEntry<
195
- [
196
- Partial<{
197
- exceptions: string[];
198
- }>,
199
- ]
200
- >;
201
-
202
- /**
203
- * Rule to disallow negating the left operand in `in` expressions.
204
- *
205
- * @since 0.1.2
206
- * @deprecated since 3.3.0, use [`no-unsafe-negation`](https://eslint.org/docs/rules/no-unsafe-negation) instead.
207
- * @see https://eslint.org/docs/latest/rules/no-negated-in-lhs
208
- */
209
- "no-negated-in-lhs": Linter.RuleEntry<[]>;
210
-
211
- /**
212
- * Rule to disallow `Object` constructors.
213
- *
214
- * @since 0.0.9
215
- * @deprecated since 8.50.0, use [`no-object-constructor`](https://eslint.org/docs/rules/no-object-constructor) instead.
216
- * @see https://eslint.org/docs/latest/rules/no-new-object
217
- */
218
- "no-new-object": Linter.RuleEntry<[]>;
219
-
220
- /**
221
- * Rule to disallow `new` operators with the `Symbol` object.
222
- *
223
- * @since 2.0.0-beta.1
224
- * @deprecated since 8.27.0, use [`no-new-native-nonconstructor`](https://eslint.org/docs/rules/no-new-native-nonconstructor) instead.
225
- * @see https://eslint.org/docs/latest/rules/no-new-symbol
226
- */
227
- "no-new-symbol": Linter.RuleEntry<[]>;
228
-
229
- /**
230
- * Rule to disallow spacing between function identifiers and their applications (deprecated).
231
- *
232
- * @since 0.1.2
233
- * @deprecated since 3.3.0, use [`func-call-spacing`](https://eslint.org/docs/rules/func-call-spacing) instead.
234
- * @see https://eslint.org/docs/latest/rules/no-spaced-func
235
- */
236
- "no-spaced-func": Linter.RuleEntry<[]>;
237
-
238
- /**
239
- * Rule to require `Reflect` methods where applicable.
240
- *
241
- * @since 1.0.0-rc-2
242
- * @deprecated since 3.9.0
243
- * @see https://eslint.org/docs/latest/rules/prefer-reflect
244
- */
245
- "prefer-reflect": Linter.RuleEntry<
246
- [
247
- Partial<{
248
- exceptions: string[];
249
- }>,
250
- ]
251
- >;
252
- }