immosquare-cleaner 0.1.50 → 0.1.51
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/immosquare-cleaner/version.rb +1 -1
- data/linters/rubocop-3.3.4.yml +2 -0
- data/linters/rubocop.yml +2 -0
- data/node_modules/@eslint/core/README.md +10 -11
- data/node_modules/@eslint/core/dist/cjs/types.d.cts +4 -0
- data/node_modules/@eslint/core/dist/esm/types.d.ts +4 -0
- data/node_modules/@eslint/core/package.json +1 -1
- data/node_modules/@eslint/js/package.json +1 -1
- data/node_modules/eslint/README.md +7 -8
- data/node_modules/eslint/bin/eslint.js +5 -0
- data/node_modules/eslint/lib/cli.js +13 -12
- data/node_modules/eslint/lib/config/config-loader.js +16 -7
- data/node_modules/eslint/lib/config/config.js +13 -10
- data/node_modules/eslint/lib/config/default-config.js +2 -8
- data/node_modules/eslint/lib/eslint/eslint.js +11 -0
- data/node_modules/eslint/lib/languages/js/index.js +8 -0
- data/node_modules/eslint/lib/linter/linter.js +16 -19
- data/node_modules/eslint/lib/rule-tester/rule-tester.js +6 -16
- data/node_modules/eslint/lib/types/index.d.ts +12 -0
- data/node_modules/eslint/lib/types/rules/best-practices.d.ts +33 -2
- data/node_modules/eslint/lib/types/rules/deprecated.d.ts +18 -77
- data/node_modules/eslint/lib/types/rules/ecmascript-6.d.ts +22 -6
- data/node_modules/eslint/lib/types/rules/possible-errors.d.ts +2 -0
- data/node_modules/eslint/lib/types/rules/stylistic-issues.d.ts +68 -5
- data/node_modules/eslint/lib/types/rules/variables.d.ts +9 -1
- data/node_modules/eslint/package.json +5 -4
- data/node_modules/npm-check-updates/build/index.js +266 -266
- data/node_modules/npm-check-updates/build/index.js.map +1 -1
- data/node_modules/npm-check-updates/package.json +1 -1
- data/package.json +3 -3
- metadata +2 -2
@@ -185,11 +185,19 @@ export interface Variables extends Linter.RulesRecord {
|
|
185
185
|
ignoreRestSiblings: boolean;
|
186
186
|
argsIgnorePattern: string;
|
187
187
|
/**
|
188
|
-
* @default '
|
188
|
+
* @default 'all'
|
189
189
|
*/
|
190
190
|
caughtErrors: "none" | "all";
|
191
191
|
caughtErrorsIgnorePattern: string;
|
192
192
|
destructuredArrayIgnorePattern: string;
|
193
|
+
/**
|
194
|
+
* @default false
|
195
|
+
*/
|
196
|
+
ignoreClassWithStaticInitBlock: boolean;
|
197
|
+
/**
|
198
|
+
* @default false
|
199
|
+
*/
|
200
|
+
reportUsedIgnorePattern: boolean;
|
193
201
|
}>,
|
194
202
|
]
|
195
203
|
>;
|
@@ -1,8 +1,9 @@
|
|
1
1
|
{
|
2
2
|
"name": "eslint",
|
3
|
-
"version": "9.
|
3
|
+
"version": "9.13.0",
|
4
4
|
"author": "Nicholas C. Zakas <nicholas+npm@nczconsulting.com>",
|
5
5
|
"description": "An AST-based pattern checker for JavaScript.",
|
6
|
+
"type": "commonjs",
|
6
7
|
"bin": {
|
7
8
|
"eslint": "./bin/eslint.js"
|
8
9
|
},
|
@@ -99,9 +100,9 @@
|
|
99
100
|
"@eslint-community/eslint-utils": "^4.2.0",
|
100
101
|
"@eslint-community/regexpp": "^4.11.0",
|
101
102
|
"@eslint/config-array": "^0.18.0",
|
102
|
-
"@eslint/core": "^0.
|
103
|
+
"@eslint/core": "^0.7.0",
|
103
104
|
"@eslint/eslintrc": "^3.1.0",
|
104
|
-
"@eslint/js": "9.
|
105
|
+
"@eslint/js": "9.13.0",
|
105
106
|
"@eslint/plugin-kit": "^0.2.0",
|
106
107
|
"@humanfs/node": "^0.16.5",
|
107
108
|
"@humanwhocodes/module-importer": "^1.0.1",
|
@@ -167,7 +168,7 @@
|
|
167
168
|
"got": "^11.8.3",
|
168
169
|
"gray-matter": "^4.0.3",
|
169
170
|
"jiti": "^2.1.0",
|
170
|
-
"knip": "^5.
|
171
|
+
"knip": "^5.32.0",
|
171
172
|
"lint-staged": "^11.0.0",
|
172
173
|
"load-perf": "^0.2.0",
|
173
174
|
"markdown-it": "^12.2.0",
|