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.
- checksums.yaml +4 -4
- data/lib/immosquare-cleaner/version.rb +1 -1
- data/lib/immosquare-cleaner.rb +2 -2
- data/linters/rubocop/cop/custom_cops/style/font_awesome_normalization.rb +104 -0
- data/linters/rubocop-3.4.1.yml +3 -1
- data/linters/rubocop.yml +4 -0
- data/node_modules/@eslint/config-helpers/LICENSE +201 -0
- data/node_modules/@eslint/config-helpers/README.md +97 -0
- data/node_modules/@eslint/config-helpers/dist/cjs/index.cjs +546 -0
- data/node_modules/@eslint/config-helpers/dist/cjs/index.d.cts +22 -0
- data/node_modules/@eslint/config-helpers/dist/cjs/types.cts +31 -0
- data/node_modules/@eslint/config-helpers/dist/esm/index.d.ts +22 -0
- data/node_modules/@eslint/config-helpers/dist/esm/index.js +544 -0
- data/node_modules/@eslint/config-helpers/dist/esm/types.d.ts +23 -0
- data/node_modules/@eslint/config-helpers/dist/esm/types.ts +31 -0
- data/node_modules/@eslint/config-helpers/package.json +60 -0
- data/node_modules/@eslint/js/package.json +1 -1
- data/node_modules/eslint/README.md +6 -4
- data/node_modules/eslint/lib/config-api.js +12 -0
- data/node_modules/eslint/lib/languages/js/source-code/source-code.js +18 -14
- data/node_modules/eslint/lib/rules/no-console.js +19 -11
- data/node_modules/eslint/lib/rules/no-native-reassign.js +1 -1
- data/node_modules/eslint/lib/rules/no-negated-in-lhs.js +1 -1
- data/node_modules/eslint/lib/types/config-api.d.ts +8 -0
- data/node_modules/eslint/lib/types/rules.d.ts +5199 -0
- data/node_modules/eslint/package.json +14 -6
- data/node_modules/eslint-scope/README.md +4 -3
- data/node_modules/eslint-scope/dist/eslint-scope.cjs +59 -2
- data/node_modules/eslint-scope/lib/index.js +1 -0
- data/node_modules/eslint-scope/lib/referencer.js +52 -0
- data/node_modules/eslint-scope/lib/scope-manager.js +4 -0
- data/node_modules/eslint-scope/lib/scope.js +1 -1
- data/node_modules/eslint-scope/lib/version.js +1 -1
- data/node_modules/eslint-scope/package.json +1 -1
- data/package.json +2 -2
- metadata +16 -11
- data/node_modules/eslint/lib/types/rules/best-practices.d.ts +0 -1143
- data/node_modules/eslint/lib/types/rules/deprecated.d.ts +0 -252
- data/node_modules/eslint/lib/types/rules/ecmascript-6.d.ts +0 -647
- data/node_modules/eslint/lib/types/rules/index.d.ts +0 -50
- data/node_modules/eslint/lib/types/rules/node-commonjs.d.ts +0 -171
- data/node_modules/eslint/lib/types/rules/possible-errors.d.ts +0 -685
- data/node_modules/eslint/lib/types/rules/strict-mode.d.ts +0 -38
- data/node_modules/eslint/lib/types/rules/stylistic-issues.d.ts +0 -2043
- data/node_modules/eslint/lib/types/rules/variables.d.ts +0 -234
@@ -1,171 +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 NodeJSAndCommonJS extends Linter.RulesRecord {
|
31
|
-
/**
|
32
|
-
* Rule to require `return` statements after callbacks.
|
33
|
-
*
|
34
|
-
* @since 1.0.0-rc-1
|
35
|
-
* @deprecated
|
36
|
-
* @see https://eslint.org/docs/latest/rules/callback-return
|
37
|
-
*/
|
38
|
-
"callback-return": Linter.RuleEntry<[string[]]>;
|
39
|
-
|
40
|
-
/**
|
41
|
-
* Rule to require `require()` calls to be placed at top-level module scope.
|
42
|
-
*
|
43
|
-
* @since 1.4.0
|
44
|
-
* @deprecated
|
45
|
-
* @see https://eslint.org/docs/latest/rules/global-require
|
46
|
-
*/
|
47
|
-
"global-require": Linter.RuleEntry<[]>;
|
48
|
-
|
49
|
-
/**
|
50
|
-
* Rule to require error handling in callbacks.
|
51
|
-
*
|
52
|
-
* @since 0.4.5
|
53
|
-
* @deprecated
|
54
|
-
* @see https://eslint.org/docs/latest/rules/handle-callback-err
|
55
|
-
*/
|
56
|
-
"handle-callback-err": Linter.RuleEntry<[string]>;
|
57
|
-
|
58
|
-
/**
|
59
|
-
* Rule to disallow use of the `Buffer()` constructor.
|
60
|
-
*
|
61
|
-
* @since 4.0.0-alpha.0
|
62
|
-
* @deprecated
|
63
|
-
* @see https://eslint.org/docs/latest/rules/no-buffer-constructor
|
64
|
-
*/
|
65
|
-
"no-buffer-constructor": Linter.RuleEntry<[]>;
|
66
|
-
|
67
|
-
/**
|
68
|
-
* Rule to disallow `require` calls to be mixed with regular variable declarations.
|
69
|
-
*
|
70
|
-
* @since 0.0.9
|
71
|
-
* @deprecated
|
72
|
-
* @see https://eslint.org/docs/latest/rules/no-mixed-requires
|
73
|
-
*/
|
74
|
-
"no-mixed-requires": Linter.RuleEntry<
|
75
|
-
[
|
76
|
-
Partial<{
|
77
|
-
/**
|
78
|
-
* @default false
|
79
|
-
*/
|
80
|
-
grouping: boolean;
|
81
|
-
/**
|
82
|
-
* @default false
|
83
|
-
*/
|
84
|
-
allowCall: boolean;
|
85
|
-
}>,
|
86
|
-
]
|
87
|
-
>;
|
88
|
-
|
89
|
-
/**
|
90
|
-
* Rule to disallow `new` operators with calls to `require`.
|
91
|
-
*
|
92
|
-
* @since 0.6.0
|
93
|
-
* @deprecated
|
94
|
-
* @see https://eslint.org/docs/latest/rules/no-new-require
|
95
|
-
*/
|
96
|
-
"no-new-require": Linter.RuleEntry<[]>;
|
97
|
-
|
98
|
-
/**
|
99
|
-
* Rule to disallow string concatenation with `__dirname` and `__filename`.
|
100
|
-
*
|
101
|
-
* @since 0.4.0
|
102
|
-
* @deprecated
|
103
|
-
* @see https://eslint.org/docs/latest/rules/no-path-concat
|
104
|
-
*/
|
105
|
-
"no-path-concat": Linter.RuleEntry<[]>;
|
106
|
-
|
107
|
-
/**
|
108
|
-
* Rule to disallow the use of `process.env`.
|
109
|
-
*
|
110
|
-
* @since 0.9.0
|
111
|
-
* @deprecated
|
112
|
-
* @see https://eslint.org/docs/latest/rules/no-process-env
|
113
|
-
*/
|
114
|
-
"no-process-env": Linter.RuleEntry<[]>;
|
115
|
-
|
116
|
-
/**
|
117
|
-
* Rule to disallow the use of `process.exit()`.
|
118
|
-
*
|
119
|
-
* @since 0.4.0
|
120
|
-
* @deprecated
|
121
|
-
* @see https://eslint.org/docs/latest/rules/no-process-exit
|
122
|
-
*/
|
123
|
-
"no-process-exit": Linter.RuleEntry<[]>;
|
124
|
-
|
125
|
-
/**
|
126
|
-
* Rule to disallow specified modules when loaded by `require`.
|
127
|
-
*
|
128
|
-
* @since 0.6.0
|
129
|
-
* @deprecated
|
130
|
-
* @see https://eslint.org/docs/latest/rules/no-restricted-modules
|
131
|
-
*/
|
132
|
-
"no-restricted-modules": Linter.RuleEntry<
|
133
|
-
[
|
134
|
-
...Array<
|
135
|
-
| string
|
136
|
-
| {
|
137
|
-
name: string;
|
138
|
-
message?: string | undefined;
|
139
|
-
}
|
140
|
-
| Partial<{
|
141
|
-
paths: Array<
|
142
|
-
| string
|
143
|
-
| {
|
144
|
-
name: string;
|
145
|
-
message?: string | undefined;
|
146
|
-
}
|
147
|
-
>;
|
148
|
-
patterns: string[];
|
149
|
-
}>
|
150
|
-
>,
|
151
|
-
]
|
152
|
-
>;
|
153
|
-
|
154
|
-
/**
|
155
|
-
* Rule to disallow synchronous methods.
|
156
|
-
*
|
157
|
-
* @since 0.0.9
|
158
|
-
* @deprecated
|
159
|
-
* @see https://eslint.org/docs/latest/rules/no-sync
|
160
|
-
*/
|
161
|
-
"no-sync": Linter.RuleEntry<
|
162
|
-
[
|
163
|
-
{
|
164
|
-
/**
|
165
|
-
* @default false
|
166
|
-
*/
|
167
|
-
allowAtRootLevel: boolean;
|
168
|
-
},
|
169
|
-
]
|
170
|
-
>;
|
171
|
-
}
|