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,234 +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 Variables extends Linter.RulesRecord {
31
- /**
32
- * Rule to require or disallow initialization in variable declarations.
33
- *
34
- * @since 1.0.0-rc-1
35
- * @see https://eslint.org/docs/latest/rules/init-declarations
36
- */
37
- "init-declarations":
38
- | Linter.RuleEntry<["always"]>
39
- | Linter.RuleEntry<
40
- [
41
- "never",
42
- Partial<{
43
- ignoreForLoopInit: boolean;
44
- }>,
45
- ]
46
- >;
47
-
48
- /**
49
- * Rule to disallow deleting variables.
50
- *
51
- * @remarks
52
- * Recommended by ESLint, the rule was enabled in `eslint:recommended`.
53
- *
54
- * @since 0.0.9
55
- * @see https://eslint.org/docs/latest/rules/no-delete-var
56
- */
57
- "no-delete-var": Linter.RuleEntry<[]>;
58
-
59
- /**
60
- * Rule to disallow labels that share a name with a variable.
61
- *
62
- * @since 0.0.9
63
- * @see https://eslint.org/docs/latest/rules/no-label-var
64
- */
65
- "no-label-var": Linter.RuleEntry<[]>;
66
-
67
- /**
68
- * Rule to disallow specified global variables.
69
- *
70
- * @since 2.3.0
71
- * @see https://eslint.org/docs/latest/rules/no-restricted-globals
72
- */
73
- "no-restricted-globals": Linter.RuleEntry<
74
- [
75
- ...Array<
76
- | string
77
- | {
78
- name: string;
79
- message?: string | undefined;
80
- }
81
- >,
82
- ]
83
- >;
84
-
85
- /**
86
- * Rule to disallow variable declarations from shadowing variables declared in the outer scope.
87
- *
88
- * @since 0.0.9
89
- * @see https://eslint.org/docs/latest/rules/no-shadow
90
- */
91
- "no-shadow": Linter.RuleEntry<
92
- [
93
- Partial<{
94
- /**
95
- * @default false
96
- */
97
- builtinGlobals: boolean;
98
- /**
99
- * @default 'functions'
100
- */
101
- hoist: "functions" | "all" | "never";
102
- allow: string[];
103
- /**
104
- * @since 8.10.0
105
- * @default false
106
- */
107
- ignoreOnInitialization: boolean;
108
- }>,
109
- ]
110
- >;
111
-
112
- /**
113
- * Rule to disallow identifiers from shadowing restricted names.
114
- *
115
- * @remarks
116
- * Recommended by ESLint, the rule was enabled in `eslint:recommended`.
117
- *
118
- * @since 0.1.4
119
- * @see https://eslint.org/docs/latest/rules/no-shadow-restricted-names
120
- */
121
- "no-shadow-restricted-names": Linter.RuleEntry<[]>;
122
-
123
- /**
124
- * Rule to disallow the use of undeclared variables unless mentioned in \/*global *\/ comments.
125
- *
126
- * @remarks
127
- * Recommended by ESLint, the rule was enabled in `eslint:recommended`.
128
- *
129
- * @since 0.0.9
130
- * @see https://eslint.org/docs/latest/rules/no-undef
131
- */
132
- "no-undef": Linter.RuleEntry<
133
- [
134
- Partial<{
135
- /**
136
- * @default false
137
- */
138
- typeof: boolean;
139
- }>,
140
- ]
141
- >;
142
-
143
- /**
144
- * Rule to disallow initializing variables to `undefined`.
145
- *
146
- * @since 0.0.6
147
- * @see https://eslint.org/docs/latest/rules/no-undef-init
148
- */
149
- "no-undef-init": Linter.RuleEntry<[]>;
150
-
151
- /**
152
- * Rule to disallow the use of `undefined` as an identifier.
153
- *
154
- * @since 0.7.1
155
- * @see https://eslint.org/docs/latest/rules/no-undefined
156
- */
157
- "no-undefined": Linter.RuleEntry<[]>;
158
-
159
- /**
160
- * Rule to disallow unused variables.
161
- *
162
- * @remarks
163
- * Recommended by ESLint, the rule was enabled in `eslint:recommended`.
164
- *
165
- * @since 0.0.9
166
- * @see https://eslint.org/docs/latest/rules/no-unused-vars
167
- */
168
- "no-unused-vars": Linter.RuleEntry<
169
- [
170
- | "all"
171
- | "local"
172
- | Partial<{
173
- /**
174
- * @default 'all'
175
- */
176
- vars: "all" | "local";
177
- varsIgnorePattern: string;
178
- /**
179
- * @default 'after-used'
180
- */
181
- args: "after-used" | "all" | "none";
182
- /**
183
- * @default false
184
- */
185
- ignoreRestSiblings: boolean;
186
- argsIgnorePattern: string;
187
- /**
188
- * @default 'all'
189
- */
190
- caughtErrors: "none" | "all";
191
- caughtErrorsIgnorePattern: string;
192
- destructuredArrayIgnorePattern: string;
193
- /**
194
- * @default false
195
- */
196
- ignoreClassWithStaticInitBlock: boolean;
197
- /**
198
- * @default false
199
- */
200
- reportUsedIgnorePattern: boolean;
201
- }>,
202
- ]
203
- >;
204
-
205
- /**
206
- * Rule to disallow the use of variables before they are defined.
207
- *
208
- * @since 0.0.9
209
- * @see https://eslint.org/docs/latest/rules/no-use-before-define
210
- */
211
- "no-use-before-define": Linter.RuleEntry<
212
- [
213
- | Partial<{
214
- /**
215
- * @default true
216
- */
217
- functions: boolean;
218
- /**
219
- * @default true
220
- */
221
- classes: boolean;
222
- /**
223
- * @default true
224
- */
225
- variables: boolean;
226
- /**
227
- * @default false
228
- */
229
- allowNamedExports: boolean;
230
- }>
231
- | "nofunc",
232
- ]
233
- >;
234
- }