Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

eslint-define-config

Package Overview
Dependencies
Maintainers
1
Versions
62
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

eslint-define-config - npm Package Compare versions

Comparing version 1.3.0 to 1.4.0

src/extends/eslint-plugin-vue-pug.d.ts

36

package.json
{
"name": "eslint-define-config",
"version": "1.3.0",
"version": "1.4.0",
"description": "Provide a defineConfig function for .eslintrc.js files",

@@ -42,34 +42,34 @@ "main": "src/index.js",

"devDependencies": {
"@intlify/eslint-plugin-vue-i18n": "~1.4.0",
"@intlify/eslint-plugin-vue-i18n": "~1.4.1",
"@types/eslint": "~8.4.1",
"@types/node": "~16.11.26",
"@types/prettier": "~2.4.4",
"@typescript-eslint/eslint-plugin": "~5.15.0",
"@typescript-eslint/parser": "~5.15.0",
"@types/node": "~17.0.25",
"@types/prettier": "~2.6.0",
"@typescript-eslint/eslint-plugin": "~5.20.0",
"@typescript-eslint/parser": "~5.20.0",
"change-case": "~4.1.2",
"eslint": "~8.11.0",
"eslint": "~8.13.0",
"eslint-config-prettier": "~8.5.0",
"eslint-gitignore": "~0.1.0",
"eslint-plugin-import": "~2.25.4",
"eslint-plugin-import": "~2.26.0",
"eslint-plugin-inclusive-language": "~2.2.0",
"eslint-plugin-jsdoc": "~38.0.4",
"eslint-plugin-jsdoc": "~39.2.7",
"eslint-plugin-node": "~11.1.0",
"eslint-plugin-prettier": "~4.0.0",
"eslint-plugin-spellcheck": "~0.0.19",
"eslint-plugin-unicorn": "~41.0.0",
"eslint-plugin-vue": "~8.5.0",
"eslint-plugin-vue-pug-sfc": "~1.0.0-alpha.20",
"eslint-plugin-unicorn": "~42.0.0",
"eslint-plugin-vue": "~8.6.0",
"eslint-plugin-vue-pug": "~0.4.0",
"esno": "~0.14.1",
"json-schema-to-typescript": "~10.1.5",
"prettier": "2.6.0",
"prettier": "2.6.2",
"prettier-plugin-organize-imports": "~2.3.4",
"typescript": "~4.6.2",
"typescript": "~4.6.3",
"upper-case-first": "~2.0.2"
},
"packageManager": "pnpm@6.32.3",
"packageManager": "pnpm@6.32.9",
"engines": {
"node": ">= 16.9.0",
"npm": ">= 7.0.0",
"pnpm": ">= 6.32.2"
"node": ">= 14.6.0",
"npm": ">= 6.0.0",
"pnpm": ">= 6.32.9"
}
}

@@ -9,3 +9,3 @@ import type { LiteralUnion } from '../utility-types';

import type { VueExtensions } from './eslint-plugin-vue';
import type { VuePugSfcExtensions } from './eslint-plugin-vue-pug-sfc';
import type { VuePugExtensions } from './eslint-plugin-vue-pug';
import type { IntlifyVueI18nExtensions } from './intlify-vue-i18n';

@@ -27,3 +27,3 @@ import type { TypescriptEslintExtensions } from './typescript-eslint';

| VueExtensions
| VuePugSfcExtensions
| VuePugExtensions
>;

@@ -30,0 +30,0 @@

@@ -24,2 +24,3 @@ import type { LiteralUnion } from './utility-types';

| 12
| 13
| 2015

@@ -32,2 +33,3 @@ | 2016

| 2021
| 2022
| 'latest';

@@ -140,9 +142,9 @@

/**
* Accepts any valid ECMAScript version number or 'latest':
* Accepts any valid ECMAScript version number or `'latest'`:
*
* - A version: es3, es5, es6, es7, es8, es9, es10, es11, es12, es13, ...
* - A year: es2015, es2016, es2017, es2018, es2019, es2020, es2021, es2022, ...
* - 'latest'
* - A version: es3, es5, es6, es7, es8, es9, es10, es11, es12, es13, ..., or
* - A year: es2015, es2016, es2017, es2018, es2019, es2020, es2021, es2022, ..., or
* - `'latest'`
*
* When it's a version or a year, the value must be a number - so do not include the es prefix.
* When it's a version or a year, the value must be a number - so do not include the `es` prefix.
*

@@ -246,2 +248,8 @@ * Specifies the version of ECMAScript syntax you want to use. This is used by the parser to determine how to perform scope analysis, and it affects the default

};
/**
* @see [templateTokenizer](https://github.com/rashfael/eslint-plugin-vue-pug#usage)
*/
templateTokenizer?: {
pug?: LiteralUnion<'vue-eslint-parser-template-tokenizer-pug'>;
};
}

@@ -16,3 +16,3 @@ import type { RuleConfig } from '../rule-config';

/**
* Disallow `this` keywords outside of classes or class-like objects.
* Disallow use of `this` in contexts where the value of `this` is `undefined`.
*

@@ -24,3 +24,3 @@ * @see [no-invalid-this](https://eslint.org/docs/rules/no-invalid-this)

/**
* Disallow `this` keywords outside of classes or class-like objects.
* Disallow use of `this` in contexts where the value of `this` is `undefined`.
*

@@ -31,3 +31,3 @@ * @see [no-invalid-this](https://eslint.org/docs/rules/no-invalid-this)

/**
* Disallow `this` keywords outside of classes or class-like objects.
* Disallow use of `this` in contexts where the value of `this` is `undefined`.
*

@@ -34,0 +34,0 @@ * @see [no-invalid-this](https://eslint.org/docs/rules/no-invalid-this)

@@ -8,6 +8,2 @@ import type { RuleConfig } from '../rule-config';

exceptions?: {
/**
* This interface was referenced by `undefined`'s JSON-Schema definition
* via the `patternProperty` "^([A-Z][a-z]*)+$".
*/
[k: string]: boolean;

@@ -14,0 +10,0 @@ };

@@ -6,3 +6,3 @@ import type { RuleConfig } from '../rule-config';

*
* @see [default](https://github.com/import-js/eslint-plugin-import/blob/v2.25.4/docs/rules/default.md)
* @see [default](https://github.com/import-js/eslint-plugin-import/blob/v2.26.0/docs/rules/default.md)
*/

@@ -14,3 +14,3 @@ export type DefaultRuleConfig = RuleConfig<[]>;

*
* @see [default](https://github.com/import-js/eslint-plugin-import/blob/v2.25.4/docs/rules/default.md)
* @see [default](https://github.com/import-js/eslint-plugin-import/blob/v2.26.0/docs/rules/default.md)
*/

@@ -21,5 +21,5 @@ export interface DefaultRule {

*
* @see [default](https://github.com/import-js/eslint-plugin-import/blob/v2.25.4/docs/rules/default.md)
* @see [default](https://github.com/import-js/eslint-plugin-import/blob/v2.26.0/docs/rules/default.md)
*/
'import/default': DefaultRuleConfig;
}

@@ -20,3 +20,3 @@ import type { RuleConfig } from '../rule-config';

*
* @see [dynamic-import-chunkname](https://github.com/import-js/eslint-plugin-import/blob/v2.25.4/docs/rules/dynamic-import-chunkname.md)
* @see [dynamic-import-chunkname](https://github.com/import-js/eslint-plugin-import/blob/v2.26.0/docs/rules/dynamic-import-chunkname.md)
*/

@@ -29,3 +29,3 @@ export type DynamicImportChunknameRuleConfig =

*
* @see [dynamic-import-chunkname](https://github.com/import-js/eslint-plugin-import/blob/v2.25.4/docs/rules/dynamic-import-chunkname.md)
* @see [dynamic-import-chunkname](https://github.com/import-js/eslint-plugin-import/blob/v2.26.0/docs/rules/dynamic-import-chunkname.md)
*/

@@ -36,5 +36,5 @@ export interface DynamicImportChunknameRule {

*
* @see [dynamic-import-chunkname](https://github.com/import-js/eslint-plugin-import/blob/v2.25.4/docs/rules/dynamic-import-chunkname.md)
* @see [dynamic-import-chunkname](https://github.com/import-js/eslint-plugin-import/blob/v2.26.0/docs/rules/dynamic-import-chunkname.md)
*/
'import/dynamic-import-chunkname': DynamicImportChunknameRuleConfig;
}

@@ -6,3 +6,3 @@ import type { RuleConfig } from '../rule-config';

*
* @see [export](https://github.com/import-js/eslint-plugin-import/blob/v2.25.4/docs/rules/export.md)
* @see [export](https://github.com/import-js/eslint-plugin-import/blob/v2.26.0/docs/rules/export.md)
*/

@@ -14,3 +14,3 @@ export type ExportRuleConfig = RuleConfig<[]>;

*
* @see [export](https://github.com/import-js/eslint-plugin-import/blob/v2.25.4/docs/rules/export.md)
* @see [export](https://github.com/import-js/eslint-plugin-import/blob/v2.26.0/docs/rules/export.md)
*/

@@ -21,5 +21,5 @@ export interface ExportRule {

*
* @see [export](https://github.com/import-js/eslint-plugin-import/blob/v2.25.4/docs/rules/export.md)
* @see [export](https://github.com/import-js/eslint-plugin-import/blob/v2.26.0/docs/rules/export.md)
*/
'import/export': ExportRuleConfig;
}

@@ -6,3 +6,3 @@ import type { RuleConfig } from '../rule-config';

*
* @see [exports-last](https://github.com/import-js/eslint-plugin-import/blob/v2.25.4/docs/rules/exports-last.md)
* @see [exports-last](https://github.com/import-js/eslint-plugin-import/blob/v2.26.0/docs/rules/exports-last.md)
*/

@@ -14,3 +14,3 @@ export type ExportsLastRuleConfig = RuleConfig<[]>;

*
* @see [exports-last](https://github.com/import-js/eslint-plugin-import/blob/v2.25.4/docs/rules/exports-last.md)
* @see [exports-last](https://github.com/import-js/eslint-plugin-import/blob/v2.26.0/docs/rules/exports-last.md)
*/

@@ -21,5 +21,5 @@ export interface ExportsLastRule {

*
* @see [exports-last](https://github.com/import-js/eslint-plugin-import/blob/v2.25.4/docs/rules/exports-last.md)
* @see [exports-last](https://github.com/import-js/eslint-plugin-import/blob/v2.26.0/docs/rules/exports-last.md)
*/
'import/exports-last': ExportsLastRuleConfig;
}

@@ -54,3 +54,3 @@ import type { RuleConfig } from '../rule-config';

*
* @see [extensions](https://github.com/import-js/eslint-plugin-import/blob/v2.25.4/docs/rules/extensions.md)
* @see [extensions](https://github.com/import-js/eslint-plugin-import/blob/v2.26.0/docs/rules/extensions.md)
*/

@@ -62,3 +62,3 @@ export type ExtensionsRuleConfig = RuleConfig<ExtensionsOptions>;

*
* @see [extensions](https://github.com/import-js/eslint-plugin-import/blob/v2.25.4/docs/rules/extensions.md)
* @see [extensions](https://github.com/import-js/eslint-plugin-import/blob/v2.26.0/docs/rules/extensions.md)
*/

@@ -69,5 +69,5 @@ export interface ExtensionsRule {

*
* @see [extensions](https://github.com/import-js/eslint-plugin-import/blob/v2.25.4/docs/rules/extensions.md)
* @see [extensions](https://github.com/import-js/eslint-plugin-import/blob/v2.26.0/docs/rules/extensions.md)
*/
'import/extensions': ExtensionsRuleConfig;
}

@@ -16,3 +16,3 @@ import type { RuleConfig } from '../rule-config';

*
* @see [first](https://github.com/import-js/eslint-plugin-import/blob/v2.25.4/docs/rules/first.md)
* @see [first](https://github.com/import-js/eslint-plugin-import/blob/v2.26.0/docs/rules/first.md)
*/

@@ -24,3 +24,3 @@ export type FirstRuleConfig = RuleConfig<FirstOptions>;

*
* @see [first](https://github.com/import-js/eslint-plugin-import/blob/v2.25.4/docs/rules/first.md)
* @see [first](https://github.com/import-js/eslint-plugin-import/blob/v2.26.0/docs/rules/first.md)
*/

@@ -31,5 +31,5 @@ export interface FirstRule {

*
* @see [first](https://github.com/import-js/eslint-plugin-import/blob/v2.25.4/docs/rules/first.md)
* @see [first](https://github.com/import-js/eslint-plugin-import/blob/v2.26.0/docs/rules/first.md)
*/
'import/first': FirstRuleConfig;
}

@@ -6,3 +6,3 @@ import type { RuleConfig } from '../rule-config';

*
* @see [group-exports](https://github.com/import-js/eslint-plugin-import/blob/v2.25.4/docs/rules/group-exports.md)
* @see [group-exports](https://github.com/import-js/eslint-plugin-import/blob/v2.26.0/docs/rules/group-exports.md)
*/

@@ -14,3 +14,3 @@ export type GroupExportsRuleConfig = RuleConfig<[]>;

*
* @see [group-exports](https://github.com/import-js/eslint-plugin-import/blob/v2.25.4/docs/rules/group-exports.md)
* @see [group-exports](https://github.com/import-js/eslint-plugin-import/blob/v2.26.0/docs/rules/group-exports.md)
*/

@@ -21,5 +21,5 @@ export interface GroupExportsRule {

*
* @see [group-exports](https://github.com/import-js/eslint-plugin-import/blob/v2.25.4/docs/rules/group-exports.md)
* @see [group-exports](https://github.com/import-js/eslint-plugin-import/blob/v2.26.0/docs/rules/group-exports.md)
*/
'import/group-exports': GroupExportsRuleConfig;
}

@@ -19,3 +19,3 @@ import type { RuleConfig } from '../rule-config';

*
* @see [max-dependencies](https://github.com/import-js/eslint-plugin-import/blob/v2.25.4/docs/rules/max-dependencies.md)
* @see [max-dependencies](https://github.com/import-js/eslint-plugin-import/blob/v2.26.0/docs/rules/max-dependencies.md)
*/

@@ -27,3 +27,3 @@ export type MaxDependenciesRuleConfig = RuleConfig<MaxDependenciesOptions>;

*
* @see [max-dependencies](https://github.com/import-js/eslint-plugin-import/blob/v2.25.4/docs/rules/max-dependencies.md)
* @see [max-dependencies](https://github.com/import-js/eslint-plugin-import/blob/v2.26.0/docs/rules/max-dependencies.md)
*/

@@ -34,5 +34,5 @@ export interface MaxDependenciesRule {

*
* @see [max-dependencies](https://github.com/import-js/eslint-plugin-import/blob/v2.25.4/docs/rules/max-dependencies.md)
* @see [max-dependencies](https://github.com/import-js/eslint-plugin-import/blob/v2.26.0/docs/rules/max-dependencies.md)
*/
'import/max-dependencies': MaxDependenciesRuleConfig;
}

@@ -18,3 +18,3 @@ import type { RuleConfig } from '../rule-config';

*
* @see [named](https://github.com/import-js/eslint-plugin-import/blob/v2.25.4/docs/rules/named.md)
* @see [named](https://github.com/import-js/eslint-plugin-import/blob/v2.26.0/docs/rules/named.md)
*/

@@ -26,3 +26,3 @@ export type NamedRuleConfig = RuleConfig<NamedOptions>;

*
* @see [named](https://github.com/import-js/eslint-plugin-import/blob/v2.25.4/docs/rules/named.md)
* @see [named](https://github.com/import-js/eslint-plugin-import/blob/v2.26.0/docs/rules/named.md)
*/

@@ -33,5 +33,5 @@ export interface NamedRule {

*
* @see [named](https://github.com/import-js/eslint-plugin-import/blob/v2.25.4/docs/rules/named.md)
* @see [named](https://github.com/import-js/eslint-plugin-import/blob/v2.26.0/docs/rules/named.md)
*/
'import/named': NamedRuleConfig;
}

@@ -21,3 +21,3 @@ import type { RuleConfig } from '../rule-config';

*
* @see [namespace](https://github.com/import-js/eslint-plugin-import/blob/v2.25.4/docs/rules/namespace.md)
* @see [namespace](https://github.com/import-js/eslint-plugin-import/blob/v2.26.0/docs/rules/namespace.md)
*/

@@ -29,3 +29,3 @@ export type NamespaceRuleConfig = RuleConfig<NamespaceOptions>;

*
* @see [namespace](https://github.com/import-js/eslint-plugin-import/blob/v2.25.4/docs/rules/namespace.md)
* @see [namespace](https://github.com/import-js/eslint-plugin-import/blob/v2.26.0/docs/rules/namespace.md)
*/

@@ -36,5 +36,5 @@ export interface NamespaceRule {

*
* @see [namespace](https://github.com/import-js/eslint-plugin-import/blob/v2.25.4/docs/rules/namespace.md)
* @see [namespace](https://github.com/import-js/eslint-plugin-import/blob/v2.26.0/docs/rules/namespace.md)
*/
'import/namespace': NamespaceRuleConfig;
}

@@ -18,3 +18,3 @@ import type { RuleConfig } from '../rule-config';

*
* @see [newline-after-import](https://github.com/import-js/eslint-plugin-import/blob/v2.25.4/docs/rules/newline-after-import.md)
* @see [newline-after-import](https://github.com/import-js/eslint-plugin-import/blob/v2.26.0/docs/rules/newline-after-import.md)
*/

@@ -27,3 +27,3 @@ export type NewlineAfterImportRuleConfig =

*
* @see [newline-after-import](https://github.com/import-js/eslint-plugin-import/blob/v2.25.4/docs/rules/newline-after-import.md)
* @see [newline-after-import](https://github.com/import-js/eslint-plugin-import/blob/v2.26.0/docs/rules/newline-after-import.md)
*/

@@ -34,5 +34,5 @@ export interface NewlineAfterImportRule {

*
* @see [newline-after-import](https://github.com/import-js/eslint-plugin-import/blob/v2.25.4/docs/rules/newline-after-import.md)
* @see [newline-after-import](https://github.com/import-js/eslint-plugin-import/blob/v2.26.0/docs/rules/newline-after-import.md)
*/
'import/newline-after-import': NewlineAfterImportRuleConfig;
}

@@ -21,3 +21,3 @@ import type { RuleConfig } from '../rule-config';

*
* @see [no-absolute-path](https://github.com/import-js/eslint-plugin-import/blob/v2.25.4/docs/rules/no-absolute-path.md)
* @see [no-absolute-path](https://github.com/import-js/eslint-plugin-import/blob/v2.26.0/docs/rules/no-absolute-path.md)
*/

@@ -29,3 +29,3 @@ export type NoAbsolutePathRuleConfig = RuleConfig<NoAbsolutePathOptions>;

*
* @see [no-absolute-path](https://github.com/import-js/eslint-plugin-import/blob/v2.25.4/docs/rules/no-absolute-path.md)
* @see [no-absolute-path](https://github.com/import-js/eslint-plugin-import/blob/v2.26.0/docs/rules/no-absolute-path.md)
*/

@@ -36,5 +36,5 @@ export interface NoAbsolutePathRule {

*
* @see [no-absolute-path](https://github.com/import-js/eslint-plugin-import/blob/v2.25.4/docs/rules/no-absolute-path.md)
* @see [no-absolute-path](https://github.com/import-js/eslint-plugin-import/blob/v2.26.0/docs/rules/no-absolute-path.md)
*/
'import/no-absolute-path': NoAbsolutePathRuleConfig;
}

@@ -6,3 +6,3 @@ import type { RuleConfig } from '../rule-config';

*
* @see [no-amd](https://github.com/import-js/eslint-plugin-import/blob/v2.25.4/docs/rules/no-amd.md)
* @see [no-amd](https://github.com/import-js/eslint-plugin-import/blob/v2.26.0/docs/rules/no-amd.md)
*/

@@ -14,3 +14,3 @@ export type NoAmdRuleConfig = RuleConfig<[]>;

*
* @see [no-amd](https://github.com/import-js/eslint-plugin-import/blob/v2.25.4/docs/rules/no-amd.md)
* @see [no-amd](https://github.com/import-js/eslint-plugin-import/blob/v2.26.0/docs/rules/no-amd.md)
*/

@@ -21,5 +21,5 @@ export interface NoAmdRule {

*
* @see [no-amd](https://github.com/import-js/eslint-plugin-import/blob/v2.25.4/docs/rules/no-amd.md)
* @see [no-amd](https://github.com/import-js/eslint-plugin-import/blob/v2.26.0/docs/rules/no-amd.md)
*/
'import/no-amd': NoAmdRuleConfig;
}

@@ -45,3 +45,3 @@ import type { RuleConfig } from '../rule-config';

*
* @see [no-anonymous-default-export](https://github.com/import-js/eslint-plugin-import/blob/v2.25.4/docs/rules/no-anonymous-default-export.md)
* @see [no-anonymous-default-export](https://github.com/import-js/eslint-plugin-import/blob/v2.26.0/docs/rules/no-anonymous-default-export.md)
*/

@@ -54,3 +54,3 @@ export type NoAnonymousDefaultExportRuleConfig =

*
* @see [no-anonymous-default-export](https://github.com/import-js/eslint-plugin-import/blob/v2.25.4/docs/rules/no-anonymous-default-export.md)
* @see [no-anonymous-default-export](https://github.com/import-js/eslint-plugin-import/blob/v2.26.0/docs/rules/no-anonymous-default-export.md)
*/

@@ -61,5 +61,5 @@ export interface NoAnonymousDefaultExportRule {

*
* @see [no-anonymous-default-export](https://github.com/import-js/eslint-plugin-import/blob/v2.25.4/docs/rules/no-anonymous-default-export.md)
* @see [no-anonymous-default-export](https://github.com/import-js/eslint-plugin-import/blob/v2.26.0/docs/rules/no-anonymous-default-export.md)
*/
'import/no-anonymous-default-export': NoAnonymousDefaultExportRuleConfig;
}

@@ -26,3 +26,3 @@ import type { RuleConfig } from '../rule-config';

*
* @see [no-commonjs](https://github.com/import-js/eslint-plugin-import/blob/v2.25.4/docs/rules/no-commonjs.md)
* @see [no-commonjs](https://github.com/import-js/eslint-plugin-import/blob/v2.26.0/docs/rules/no-commonjs.md)
*/

@@ -34,3 +34,3 @@ export type NoCommonjsRuleConfig = RuleConfig<NoCommonjsOptions>;

*
* @see [no-commonjs](https://github.com/import-js/eslint-plugin-import/blob/v2.25.4/docs/rules/no-commonjs.md)
* @see [no-commonjs](https://github.com/import-js/eslint-plugin-import/blob/v2.26.0/docs/rules/no-commonjs.md)
*/

@@ -41,5 +41,5 @@ export interface NoCommonjsRule {

*
* @see [no-commonjs](https://github.com/import-js/eslint-plugin-import/blob/v2.25.4/docs/rules/no-commonjs.md)
* @see [no-commonjs](https://github.com/import-js/eslint-plugin-import/blob/v2.26.0/docs/rules/no-commonjs.md)
*/
'import/no-commonjs': NoCommonjsRuleConfig;
}

@@ -26,3 +26,3 @@ import type { RuleConfig } from '../rule-config';

*
* @see [no-cycle](https://github.com/import-js/eslint-plugin-import/blob/v2.25.4/docs/rules/no-cycle.md)
* @see [no-cycle](https://github.com/import-js/eslint-plugin-import/blob/v2.26.0/docs/rules/no-cycle.md)
*/

@@ -34,3 +34,3 @@ export type NoCycleRuleConfig = RuleConfig<NoCycleOptions>;

*
* @see [no-cycle](https://github.com/import-js/eslint-plugin-import/blob/v2.25.4/docs/rules/no-cycle.md)
* @see [no-cycle](https://github.com/import-js/eslint-plugin-import/blob/v2.26.0/docs/rules/no-cycle.md)
*/

@@ -41,5 +41,5 @@ export interface NoCycleRule {

*
* @see [no-cycle](https://github.com/import-js/eslint-plugin-import/blob/v2.25.4/docs/rules/no-cycle.md)
* @see [no-cycle](https://github.com/import-js/eslint-plugin-import/blob/v2.26.0/docs/rules/no-cycle.md)
*/
'import/no-cycle': NoCycleRuleConfig;
}

@@ -6,3 +6,3 @@ import type { RuleConfig } from '../rule-config';

*
* @see [no-default-export](https://github.com/import-js/eslint-plugin-import/blob/v2.25.4/docs/rules/no-default-export.md)
* @see [no-default-export](https://github.com/import-js/eslint-plugin-import/blob/v2.26.0/docs/rules/no-default-export.md)
*/

@@ -14,3 +14,3 @@ export type NoDefaultExportRuleConfig = RuleConfig<[]>;

*
* @see [no-default-export](https://github.com/import-js/eslint-plugin-import/blob/v2.25.4/docs/rules/no-default-export.md)
* @see [no-default-export](https://github.com/import-js/eslint-plugin-import/blob/v2.26.0/docs/rules/no-default-export.md)
*/

@@ -21,5 +21,5 @@ export interface NoDefaultExportRule {

*
* @see [no-default-export](https://github.com/import-js/eslint-plugin-import/blob/v2.25.4/docs/rules/no-default-export.md)
* @see [no-default-export](https://github.com/import-js/eslint-plugin-import/blob/v2.26.0/docs/rules/no-default-export.md)
*/
'import/no-default-export': NoDefaultExportRuleConfig;
}

@@ -6,3 +6,3 @@ import type { RuleConfig } from '../rule-config';

*
* @see [no-deprecated](https://github.com/import-js/eslint-plugin-import/blob/v2.25.4/docs/rules/no-deprecated.md)
* @see [no-deprecated](https://github.com/import-js/eslint-plugin-import/blob/v2.26.0/docs/rules/no-deprecated.md)
*/

@@ -14,3 +14,3 @@ export type NoDeprecatedRuleConfig = RuleConfig<[]>;

*
* @see [no-deprecated](https://github.com/import-js/eslint-plugin-import/blob/v2.25.4/docs/rules/no-deprecated.md)
* @see [no-deprecated](https://github.com/import-js/eslint-plugin-import/blob/v2.26.0/docs/rules/no-deprecated.md)
*/

@@ -21,5 +21,5 @@ export interface NoDeprecatedRule {

*
* @see [no-deprecated](https://github.com/import-js/eslint-plugin-import/blob/v2.25.4/docs/rules/no-deprecated.md)
* @see [no-deprecated](https://github.com/import-js/eslint-plugin-import/blob/v2.26.0/docs/rules/no-deprecated.md)
*/
'import/no-deprecated': NoDeprecatedRuleConfig;
}

@@ -18,3 +18,3 @@ import type { RuleConfig } from '../rule-config';

*
* @see [no-duplicates](https://github.com/import-js/eslint-plugin-import/blob/v2.25.4/docs/rules/no-duplicates.md)
* @see [no-duplicates](https://github.com/import-js/eslint-plugin-import/blob/v2.26.0/docs/rules/no-duplicates.md)
*/

@@ -26,3 +26,3 @@ export type NoDuplicatesRuleConfig = RuleConfig<NoDuplicatesOptions>;

*
* @see [no-duplicates](https://github.com/import-js/eslint-plugin-import/blob/v2.25.4/docs/rules/no-duplicates.md)
* @see [no-duplicates](https://github.com/import-js/eslint-plugin-import/blob/v2.26.0/docs/rules/no-duplicates.md)
*/

@@ -33,5 +33,5 @@ export interface NoDuplicatesRule {

*
* @see [no-duplicates](https://github.com/import-js/eslint-plugin-import/blob/v2.25.4/docs/rules/no-duplicates.md)
* @see [no-duplicates](https://github.com/import-js/eslint-plugin-import/blob/v2.26.0/docs/rules/no-duplicates.md)
*/
'import/no-duplicates': NoDuplicatesRuleConfig;
}

@@ -18,3 +18,3 @@ import type { RuleConfig } from '../rule-config';

*
* @see [no-dynamic-require](https://github.com/import-js/eslint-plugin-import/blob/v2.25.4/docs/rules/no-dynamic-require.md)
* @see [no-dynamic-require](https://github.com/import-js/eslint-plugin-import/blob/v2.26.0/docs/rules/no-dynamic-require.md)
*/

@@ -26,3 +26,3 @@ export type NoDynamicRequireRuleConfig = RuleConfig<NoDynamicRequireOptions>;

*
* @see [no-dynamic-require](https://github.com/import-js/eslint-plugin-import/blob/v2.25.4/docs/rules/no-dynamic-require.md)
* @see [no-dynamic-require](https://github.com/import-js/eslint-plugin-import/blob/v2.26.0/docs/rules/no-dynamic-require.md)
*/

@@ -33,5 +33,5 @@ export interface NoDynamicRequireRule {

*
* @see [no-dynamic-require](https://github.com/import-js/eslint-plugin-import/blob/v2.25.4/docs/rules/no-dynamic-require.md)
* @see [no-dynamic-require](https://github.com/import-js/eslint-plugin-import/blob/v2.26.0/docs/rules/no-dynamic-require.md)
*/
'import/no-dynamic-require': NoDynamicRequireRuleConfig;
}

@@ -22,3 +22,3 @@ import type { RuleConfig } from '../rule-config';

*
* @see [no-extraneous-dependencies](https://github.com/import-js/eslint-plugin-import/blob/v2.25.4/docs/rules/no-extraneous-dependencies.md)
* @see [no-extraneous-dependencies](https://github.com/import-js/eslint-plugin-import/blob/v2.26.0/docs/rules/no-extraneous-dependencies.md)
*/

@@ -31,3 +31,3 @@ export type NoExtraneousDependenciesRuleConfig =

*
* @see [no-extraneous-dependencies](https://github.com/import-js/eslint-plugin-import/blob/v2.25.4/docs/rules/no-extraneous-dependencies.md)
* @see [no-extraneous-dependencies](https://github.com/import-js/eslint-plugin-import/blob/v2.26.0/docs/rules/no-extraneous-dependencies.md)
*/

@@ -38,5 +38,5 @@ export interface NoExtraneousDependenciesRule {

*
* @see [no-extraneous-dependencies](https://github.com/import-js/eslint-plugin-import/blob/v2.25.4/docs/rules/no-extraneous-dependencies.md)
* @see [no-extraneous-dependencies](https://github.com/import-js/eslint-plugin-import/blob/v2.26.0/docs/rules/no-extraneous-dependencies.md)
*/
'import/no-extraneous-dependencies': NoExtraneousDependenciesRuleConfig;
}

@@ -22,3 +22,3 @@ import type { RuleConfig } from '../rule-config';

*
* @see [no-internal-modules](https://github.com/import-js/eslint-plugin-import/blob/v2.25.4/docs/rules/no-internal-modules.md)
* @see [no-internal-modules](https://github.com/import-js/eslint-plugin-import/blob/v2.26.0/docs/rules/no-internal-modules.md)
*/

@@ -30,3 +30,3 @@ export type NoInternalModulesRuleConfig = RuleConfig<NoInternalModulesOptions>;

*
* @see [no-internal-modules](https://github.com/import-js/eslint-plugin-import/blob/v2.25.4/docs/rules/no-internal-modules.md)
* @see [no-internal-modules](https://github.com/import-js/eslint-plugin-import/blob/v2.26.0/docs/rules/no-internal-modules.md)
*/

@@ -37,5 +37,5 @@ export interface NoInternalModulesRule {

*
* @see [no-internal-modules](https://github.com/import-js/eslint-plugin-import/blob/v2.25.4/docs/rules/no-internal-modules.md)
* @see [no-internal-modules](https://github.com/import-js/eslint-plugin-import/blob/v2.26.0/docs/rules/no-internal-modules.md)
*/
'import/no-internal-modules': NoInternalModulesRuleConfig;
}

@@ -6,3 +6,3 @@ import type { RuleConfig } from '../rule-config';

*
* @see [no-mutable-exports](https://github.com/import-js/eslint-plugin-import/blob/v2.25.4/docs/rules/no-mutable-exports.md)
* @see [no-mutable-exports](https://github.com/import-js/eslint-plugin-import/blob/v2.26.0/docs/rules/no-mutable-exports.md)
*/

@@ -14,3 +14,3 @@ export type NoMutableExportsRuleConfig = RuleConfig<[]>;

*
* @see [no-mutable-exports](https://github.com/import-js/eslint-plugin-import/blob/v2.25.4/docs/rules/no-mutable-exports.md)
* @see [no-mutable-exports](https://github.com/import-js/eslint-plugin-import/blob/v2.26.0/docs/rules/no-mutable-exports.md)
*/

@@ -21,5 +21,5 @@ export interface NoMutableExportsRule {

*
* @see [no-mutable-exports](https://github.com/import-js/eslint-plugin-import/blob/v2.25.4/docs/rules/no-mutable-exports.md)
* @see [no-mutable-exports](https://github.com/import-js/eslint-plugin-import/blob/v2.26.0/docs/rules/no-mutable-exports.md)
*/
'import/no-mutable-exports': NoMutableExportsRuleConfig;
}

@@ -6,3 +6,3 @@ import type { RuleConfig } from '../rule-config';

*
* @see [no-named-as-default-member](https://github.com/import-js/eslint-plugin-import/blob/v2.25.4/docs/rules/no-named-as-default-member.md)
* @see [no-named-as-default-member](https://github.com/import-js/eslint-plugin-import/blob/v2.26.0/docs/rules/no-named-as-default-member.md)
*/

@@ -14,3 +14,3 @@ export type NoNamedAsDefaultMemberRuleConfig = RuleConfig<[]>;

*
* @see [no-named-as-default-member](https://github.com/import-js/eslint-plugin-import/blob/v2.25.4/docs/rules/no-named-as-default-member.md)
* @see [no-named-as-default-member](https://github.com/import-js/eslint-plugin-import/blob/v2.26.0/docs/rules/no-named-as-default-member.md)
*/

@@ -21,5 +21,5 @@ export interface NoNamedAsDefaultMemberRule {

*
* @see [no-named-as-default-member](https://github.com/import-js/eslint-plugin-import/blob/v2.25.4/docs/rules/no-named-as-default-member.md)
* @see [no-named-as-default-member](https://github.com/import-js/eslint-plugin-import/blob/v2.26.0/docs/rules/no-named-as-default-member.md)
*/
'import/no-named-as-default-member': NoNamedAsDefaultMemberRuleConfig;
}

@@ -6,3 +6,3 @@ import type { RuleConfig } from '../rule-config';

*
* @see [no-named-as-default](https://github.com/import-js/eslint-plugin-import/blob/v2.25.4/docs/rules/no-named-as-default.md)
* @see [no-named-as-default](https://github.com/import-js/eslint-plugin-import/blob/v2.26.0/docs/rules/no-named-as-default.md)
*/

@@ -14,3 +14,3 @@ export type NoNamedAsDefaultRuleConfig = RuleConfig<[]>;

*
* @see [no-named-as-default](https://github.com/import-js/eslint-plugin-import/blob/v2.25.4/docs/rules/no-named-as-default.md)
* @see [no-named-as-default](https://github.com/import-js/eslint-plugin-import/blob/v2.26.0/docs/rules/no-named-as-default.md)
*/

@@ -21,5 +21,5 @@ export interface NoNamedAsDefaultRule {

*
* @see [no-named-as-default](https://github.com/import-js/eslint-plugin-import/blob/v2.25.4/docs/rules/no-named-as-default.md)
* @see [no-named-as-default](https://github.com/import-js/eslint-plugin-import/blob/v2.26.0/docs/rules/no-named-as-default.md)
*/
'import/no-named-as-default': NoNamedAsDefaultRuleConfig;
}

@@ -6,3 +6,3 @@ import type { RuleConfig } from '../rule-config';

*
* @see [no-named-default](https://github.com/import-js/eslint-plugin-import/blob/v2.25.4/docs/rules/no-named-default.md)
* @see [no-named-default](https://github.com/import-js/eslint-plugin-import/blob/v2.26.0/docs/rules/no-named-default.md)
*/

@@ -14,3 +14,3 @@ export type NoNamedDefaultRuleConfig = RuleConfig<[]>;

*
* @see [no-named-default](https://github.com/import-js/eslint-plugin-import/blob/v2.25.4/docs/rules/no-named-default.md)
* @see [no-named-default](https://github.com/import-js/eslint-plugin-import/blob/v2.26.0/docs/rules/no-named-default.md)
*/

@@ -21,5 +21,5 @@ export interface NoNamedDefaultRule {

*
* @see [no-named-default](https://github.com/import-js/eslint-plugin-import/blob/v2.25.4/docs/rules/no-named-default.md)
* @see [no-named-default](https://github.com/import-js/eslint-plugin-import/blob/v2.26.0/docs/rules/no-named-default.md)
*/
'import/no-named-default': NoNamedDefaultRuleConfig;
}

@@ -6,3 +6,3 @@ import type { RuleConfig } from '../rule-config';

*
* @see [no-named-export](https://github.com/import-js/eslint-plugin-import/blob/v2.25.4/docs/rules/no-named-export.md)
* @see [no-named-export](https://github.com/import-js/eslint-plugin-import/blob/v2.26.0/docs/rules/no-named-export.md)
*/

@@ -14,3 +14,3 @@ export type NoNamedExportRuleConfig = RuleConfig<[]>;

*
* @see [no-named-export](https://github.com/import-js/eslint-plugin-import/blob/v2.25.4/docs/rules/no-named-export.md)
* @see [no-named-export](https://github.com/import-js/eslint-plugin-import/blob/v2.26.0/docs/rules/no-named-export.md)
*/

@@ -21,5 +21,5 @@ export interface NoNamedExportRule {

*
* @see [no-named-export](https://github.com/import-js/eslint-plugin-import/blob/v2.25.4/docs/rules/no-named-export.md)
* @see [no-named-export](https://github.com/import-js/eslint-plugin-import/blob/v2.26.0/docs/rules/no-named-export.md)
*/
'import/no-named-export': NoNamedExportRuleConfig;
}

@@ -19,3 +19,3 @@ import type { RuleConfig } from '../rule-config';

*
* @see [no-namespace](https://github.com/import-js/eslint-plugin-import/blob/v2.25.4/docs/rules/no-namespace.md)
* @see [no-namespace](https://github.com/import-js/eslint-plugin-import/blob/v2.26.0/docs/rules/no-namespace.md)
*/

@@ -27,3 +27,3 @@ export type NoNamespaceRuleConfig = RuleConfig<NoNamespaceOptions>;

*
* @see [no-namespace](https://github.com/import-js/eslint-plugin-import/blob/v2.25.4/docs/rules/no-namespace.md)
* @see [no-namespace](https://github.com/import-js/eslint-plugin-import/blob/v2.26.0/docs/rules/no-namespace.md)
*/

@@ -34,5 +34,5 @@ export interface NoNamespaceRule {

*
* @see [no-namespace](https://github.com/import-js/eslint-plugin-import/blob/v2.25.4/docs/rules/no-namespace.md)
* @see [no-namespace](https://github.com/import-js/eslint-plugin-import/blob/v2.26.0/docs/rules/no-namespace.md)
*/
'import/no-namespace': NoNamespaceRuleConfig;
}

@@ -18,3 +18,3 @@ import type { RuleConfig } from '../rule-config';

*
* @see [no-nodejs-modules](https://github.com/import-js/eslint-plugin-import/blob/v2.25.4/docs/rules/no-nodejs-modules.md)
* @see [no-nodejs-modules](https://github.com/import-js/eslint-plugin-import/blob/v2.26.0/docs/rules/no-nodejs-modules.md)
*/

@@ -26,3 +26,3 @@ export type NoNodejsModulesRuleConfig = RuleConfig<NoNodejsModulesOptions>;

*
* @see [no-nodejs-modules](https://github.com/import-js/eslint-plugin-import/blob/v2.25.4/docs/rules/no-nodejs-modules.md)
* @see [no-nodejs-modules](https://github.com/import-js/eslint-plugin-import/blob/v2.26.0/docs/rules/no-nodejs-modules.md)
*/

@@ -33,5 +33,5 @@ export interface NoNodejsModulesRule {

*
* @see [no-nodejs-modules](https://github.com/import-js/eslint-plugin-import/blob/v2.25.4/docs/rules/no-nodejs-modules.md)
* @see [no-nodejs-modules](https://github.com/import-js/eslint-plugin-import/blob/v2.26.0/docs/rules/no-nodejs-modules.md)
*/
'import/no-nodejs-modules': NoNodejsModulesRuleConfig;
}

@@ -21,3 +21,3 @@ import type { RuleConfig } from '../rule-config';

*
* @see [no-relative-packages](https://github.com/import-js/eslint-plugin-import/blob/v2.25.4/docs/rules/no-relative-packages.md)
* @see [no-relative-packages](https://github.com/import-js/eslint-plugin-import/blob/v2.26.0/docs/rules/no-relative-packages.md)
*/

@@ -30,3 +30,3 @@ export type NoRelativePackagesRuleConfig =

*
* @see [no-relative-packages](https://github.com/import-js/eslint-plugin-import/blob/v2.25.4/docs/rules/no-relative-packages.md)
* @see [no-relative-packages](https://github.com/import-js/eslint-plugin-import/blob/v2.26.0/docs/rules/no-relative-packages.md)
*/

@@ -37,5 +37,5 @@ export interface NoRelativePackagesRule {

*
* @see [no-relative-packages](https://github.com/import-js/eslint-plugin-import/blob/v2.25.4/docs/rules/no-relative-packages.md)
* @see [no-relative-packages](https://github.com/import-js/eslint-plugin-import/blob/v2.26.0/docs/rules/no-relative-packages.md)
*/
'import/no-relative-packages': NoRelativePackagesRuleConfig;
}

@@ -21,3 +21,3 @@ import type { RuleConfig } from '../rule-config';

*
* @see [no-relative-parent-imports](https://github.com/import-js/eslint-plugin-import/blob/v2.25.4/docs/rules/no-relative-parent-imports.md)
* @see [no-relative-parent-imports](https://github.com/import-js/eslint-plugin-import/blob/v2.26.0/docs/rules/no-relative-parent-imports.md)
*/

@@ -30,3 +30,3 @@ export type NoRelativeParentImportsRuleConfig =

*
* @see [no-relative-parent-imports](https://github.com/import-js/eslint-plugin-import/blob/v2.25.4/docs/rules/no-relative-parent-imports.md)
* @see [no-relative-parent-imports](https://github.com/import-js/eslint-plugin-import/blob/v2.26.0/docs/rules/no-relative-parent-imports.md)
*/

@@ -37,5 +37,5 @@ export interface NoRelativeParentImportsRule {

*
* @see [no-relative-parent-imports](https://github.com/import-js/eslint-plugin-import/blob/v2.25.4/docs/rules/no-relative-parent-imports.md)
* @see [no-relative-parent-imports](https://github.com/import-js/eslint-plugin-import/blob/v2.26.0/docs/rules/no-relative-parent-imports.md)
*/
'import/no-relative-parent-imports': NoRelativeParentImportsRuleConfig;
}

@@ -32,3 +32,3 @@ import type { RuleConfig } from '../rule-config';

*
* @see [no-restricted-paths](https://github.com/import-js/eslint-plugin-import/blob/v2.25.4/docs/rules/no-restricted-paths.md)
* @see [no-restricted-paths](https://github.com/import-js/eslint-plugin-import/blob/v2.26.0/docs/rules/no-restricted-paths.md)
*/

@@ -40,3 +40,3 @@ export type NoRestrictedPathsRuleConfig = RuleConfig<NoRestrictedPathsOptions>;

*
* @see [no-restricted-paths](https://github.com/import-js/eslint-plugin-import/blob/v2.25.4/docs/rules/no-restricted-paths.md)
* @see [no-restricted-paths](https://github.com/import-js/eslint-plugin-import/blob/v2.26.0/docs/rules/no-restricted-paths.md)
*/

@@ -47,5 +47,5 @@ export interface NoRestrictedPathsRule {

*
* @see [no-restricted-paths](https://github.com/import-js/eslint-plugin-import/blob/v2.25.4/docs/rules/no-restricted-paths.md)
* @see [no-restricted-paths](https://github.com/import-js/eslint-plugin-import/blob/v2.26.0/docs/rules/no-restricted-paths.md)
*/
'import/no-restricted-paths': NoRestrictedPathsRuleConfig;
}

@@ -6,3 +6,3 @@ import type { RuleConfig } from '../rule-config';

*
* @see [no-self-import](https://github.com/import-js/eslint-plugin-import/blob/v2.25.4/docs/rules/no-self-import.md)
* @see [no-self-import](https://github.com/import-js/eslint-plugin-import/blob/v2.26.0/docs/rules/no-self-import.md)
*/

@@ -14,3 +14,3 @@ export type NoSelfImportRuleConfig = RuleConfig<[]>;

*
* @see [no-self-import](https://github.com/import-js/eslint-plugin-import/blob/v2.25.4/docs/rules/no-self-import.md)
* @see [no-self-import](https://github.com/import-js/eslint-plugin-import/blob/v2.26.0/docs/rules/no-self-import.md)
*/

@@ -21,5 +21,5 @@ export interface NoSelfImportRule {

*
* @see [no-self-import](https://github.com/import-js/eslint-plugin-import/blob/v2.25.4/docs/rules/no-self-import.md)
* @see [no-self-import](https://github.com/import-js/eslint-plugin-import/blob/v2.26.0/docs/rules/no-self-import.md)
*/
'import/no-self-import': NoSelfImportRuleConfig;
}

@@ -21,3 +21,3 @@ import type { RuleConfig } from '../rule-config';

*
* @see [no-unassigned-import](https://github.com/import-js/eslint-plugin-import/blob/v2.25.4/docs/rules/no-unassigned-import.md)
* @see [no-unassigned-import](https://github.com/import-js/eslint-plugin-import/blob/v2.26.0/docs/rules/no-unassigned-import.md)
*/

@@ -30,3 +30,3 @@ export type NoUnassignedImportRuleConfig =

*
* @see [no-unassigned-import](https://github.com/import-js/eslint-plugin-import/blob/v2.25.4/docs/rules/no-unassigned-import.md)
* @see [no-unassigned-import](https://github.com/import-js/eslint-plugin-import/blob/v2.26.0/docs/rules/no-unassigned-import.md)
*/

@@ -37,5 +37,5 @@ export interface NoUnassignedImportRule {

*
* @see [no-unassigned-import](https://github.com/import-js/eslint-plugin-import/blob/v2.25.4/docs/rules/no-unassigned-import.md)
* @see [no-unassigned-import](https://github.com/import-js/eslint-plugin-import/blob/v2.26.0/docs/rules/no-unassigned-import.md)
*/
'import/no-unassigned-import': NoUnassignedImportRuleConfig;
}

@@ -23,3 +23,3 @@ import type { RuleConfig } from '../rule-config';

*
* @see [no-unresolved](https://github.com/import-js/eslint-plugin-import/blob/v2.25.4/docs/rules/no-unresolved.md)
* @see [no-unresolved](https://github.com/import-js/eslint-plugin-import/blob/v2.26.0/docs/rules/no-unresolved.md)
*/

@@ -31,3 +31,3 @@ export type NoUnresolvedRuleConfig = RuleConfig<NoUnresolvedOptions>;

*
* @see [no-unresolved](https://github.com/import-js/eslint-plugin-import/blob/v2.25.4/docs/rules/no-unresolved.md)
* @see [no-unresolved](https://github.com/import-js/eslint-plugin-import/blob/v2.26.0/docs/rules/no-unresolved.md)
*/

@@ -38,5 +38,5 @@ export interface NoUnresolvedRule {

*
* @see [no-unresolved](https://github.com/import-js/eslint-plugin-import/blob/v2.25.4/docs/rules/no-unresolved.md)
* @see [no-unresolved](https://github.com/import-js/eslint-plugin-import/blob/v2.26.0/docs/rules/no-unresolved.md)
*/
'import/no-unresolved': NoUnresolvedRuleConfig;
}

@@ -46,3 +46,3 @@ import type { RuleConfig } from '../rule-config';

*
* @see [no-unused-modules](https://github.com/import-js/eslint-plugin-import/blob/v2.25.4/docs/rules/no-unused-modules.md)
* @see [no-unused-modules](https://github.com/import-js/eslint-plugin-import/blob/v2.26.0/docs/rules/no-unused-modules.md)
*/

@@ -54,3 +54,3 @@ export type NoUnusedModulesRuleConfig = RuleConfig<NoUnusedModulesOptions>;

*
* @see [no-unused-modules](https://github.com/import-js/eslint-plugin-import/blob/v2.25.4/docs/rules/no-unused-modules.md)
* @see [no-unused-modules](https://github.com/import-js/eslint-plugin-import/blob/v2.26.0/docs/rules/no-unused-modules.md)
*/

@@ -61,5 +61,5 @@ export interface NoUnusedModulesRule {

*
* @see [no-unused-modules](https://github.com/import-js/eslint-plugin-import/blob/v2.25.4/docs/rules/no-unused-modules.md)
* @see [no-unused-modules](https://github.com/import-js/eslint-plugin-import/blob/v2.26.0/docs/rules/no-unused-modules.md)
*/
'import/no-unused-modules': NoUnusedModulesRuleConfig;
}

@@ -19,3 +19,3 @@ import type { RuleConfig } from '../rule-config';

*
* @see [no-useless-path-segments](https://github.com/import-js/eslint-plugin-import/blob/v2.25.4/docs/rules/no-useless-path-segments.md)
* @see [no-useless-path-segments](https://github.com/import-js/eslint-plugin-import/blob/v2.26.0/docs/rules/no-useless-path-segments.md)
*/

@@ -28,3 +28,3 @@ export type NoUselessPathSegmentsRuleConfig =

*
* @see [no-useless-path-segments](https://github.com/import-js/eslint-plugin-import/blob/v2.25.4/docs/rules/no-useless-path-segments.md)
* @see [no-useless-path-segments](https://github.com/import-js/eslint-plugin-import/blob/v2.26.0/docs/rules/no-useless-path-segments.md)
*/

@@ -35,5 +35,5 @@ export interface NoUselessPathSegmentsRule {

*
* @see [no-useless-path-segments](https://github.com/import-js/eslint-plugin-import/blob/v2.25.4/docs/rules/no-useless-path-segments.md)
* @see [no-useless-path-segments](https://github.com/import-js/eslint-plugin-import/blob/v2.26.0/docs/rules/no-useless-path-segments.md)
*/
'import/no-useless-path-segments': NoUselessPathSegmentsRuleConfig;
}

@@ -6,3 +6,3 @@ import type { RuleConfig } from '../rule-config';

*
* @see [no-webpack-loader-syntax](https://github.com/import-js/eslint-plugin-import/blob/v2.25.4/docs/rules/no-webpack-loader-syntax.md)
* @see [no-webpack-loader-syntax](https://github.com/import-js/eslint-plugin-import/blob/v2.26.0/docs/rules/no-webpack-loader-syntax.md)
*/

@@ -14,3 +14,3 @@ export type NoWebpackLoaderSyntaxRuleConfig = RuleConfig<[]>;

*
* @see [no-webpack-loader-syntax](https://github.com/import-js/eslint-plugin-import/blob/v2.25.4/docs/rules/no-webpack-loader-syntax.md)
* @see [no-webpack-loader-syntax](https://github.com/import-js/eslint-plugin-import/blob/v2.26.0/docs/rules/no-webpack-loader-syntax.md)
*/

@@ -21,5 +21,5 @@ export interface NoWebpackLoaderSyntaxRule {

*
* @see [no-webpack-loader-syntax](https://github.com/import-js/eslint-plugin-import/blob/v2.25.4/docs/rules/no-webpack-loader-syntax.md)
* @see [no-webpack-loader-syntax](https://github.com/import-js/eslint-plugin-import/blob/v2.26.0/docs/rules/no-webpack-loader-syntax.md)
*/
'import/no-webpack-loader-syntax': NoWebpackLoaderSyntaxRuleConfig;
}

@@ -47,3 +47,3 @@ import type { RuleConfig } from '../rule-config';

*
* @see [order](https://github.com/import-js/eslint-plugin-import/blob/v2.25.4/docs/rules/order.md)
* @see [order](https://github.com/import-js/eslint-plugin-import/blob/v2.26.0/docs/rules/order.md)
*/

@@ -55,3 +55,3 @@ export type OrderRuleConfig = RuleConfig<OrderOptions>;

*
* @see [order](https://github.com/import-js/eslint-plugin-import/blob/v2.25.4/docs/rules/order.md)
* @see [order](https://github.com/import-js/eslint-plugin-import/blob/v2.26.0/docs/rules/order.md)
*/

@@ -62,5 +62,5 @@ export interface OrderRule {

*
* @see [order](https://github.com/import-js/eslint-plugin-import/blob/v2.25.4/docs/rules/order.md)
* @see [order](https://github.com/import-js/eslint-plugin-import/blob/v2.26.0/docs/rules/order.md)
*/
'import/order': OrderRuleConfig;
}

@@ -6,3 +6,3 @@ import type { RuleConfig } from '../rule-config';

*
* @see [prefer-default-export](https://github.com/import-js/eslint-plugin-import/blob/v2.25.4/docs/rules/prefer-default-export.md)
* @see [prefer-default-export](https://github.com/import-js/eslint-plugin-import/blob/v2.26.0/docs/rules/prefer-default-export.md)
*/

@@ -14,3 +14,3 @@ export type PreferDefaultExportRuleConfig = RuleConfig<[]>;

*
* @see [prefer-default-export](https://github.com/import-js/eslint-plugin-import/blob/v2.25.4/docs/rules/prefer-default-export.md)
* @see [prefer-default-export](https://github.com/import-js/eslint-plugin-import/blob/v2.26.0/docs/rules/prefer-default-export.md)
*/

@@ -21,5 +21,5 @@ export interface PreferDefaultExportRule {

*
* @see [prefer-default-export](https://github.com/import-js/eslint-plugin-import/blob/v2.25.4/docs/rules/prefer-default-export.md)
* @see [prefer-default-export](https://github.com/import-js/eslint-plugin-import/blob/v2.26.0/docs/rules/prefer-default-export.md)
*/
'import/prefer-default-export': PreferDefaultExportRuleConfig;
}

@@ -6,3 +6,3 @@ import type { RuleConfig } from '../rule-config';

*
* @see [unambiguous](https://github.com/import-js/eslint-plugin-import/blob/v2.25.4/docs/rules/unambiguous.md)
* @see [unambiguous](https://github.com/import-js/eslint-plugin-import/blob/v2.26.0/docs/rules/unambiguous.md)
*/

@@ -14,3 +14,3 @@ export type UnambiguousRuleConfig = RuleConfig<[]>;

*
* @see [unambiguous](https://github.com/import-js/eslint-plugin-import/blob/v2.25.4/docs/rules/unambiguous.md)
* @see [unambiguous](https://github.com/import-js/eslint-plugin-import/blob/v2.26.0/docs/rules/unambiguous.md)
*/

@@ -21,5 +21,5 @@ export interface UnambiguousRule {

*
* @see [unambiguous](https://github.com/import-js/eslint-plugin-import/blob/v2.25.4/docs/rules/unambiguous.md)
* @see [unambiguous](https://github.com/import-js/eslint-plugin-import/blob/v2.26.0/docs/rules/unambiguous.md)
*/
'import/unambiguous': UnambiguousRuleConfig;
}

@@ -11,3 +11,3 @@ import type { EslintRules } from './eslint';

import type { VueI18nRules } from './vue-i18n';
import type { VuePugSfcRules } from './vue-pug-sfc';
import type { VuePugRules } from './vue-pug';

@@ -29,4 +29,4 @@ /**

VueI18nRules &
VuePugSfcRules &
VuePugRules &
Record<string, RuleConfig>
>;

@@ -17,2 +17,3 @@ import type { RuleConfig } from '../rule-config';

)[];
enableFixer?: boolean;
exemptedBy?: string[];

@@ -19,0 +20,0 @@ exemptNoArguments?: boolean;

@@ -15,2 +15,3 @@ import type { RuleConfig } from '../rule-config';

inlineCommentBlock?: boolean;
minLineCount?: number;
}

@@ -22,2 +23,3 @@ )[];

fixerMessage?: string;
minLineCount?: number;
publicOnly?:

@@ -24,0 +26,0 @@ | boolean

@@ -15,2 +15,3 @@ import type { RuleConfig } from '../rule-config';

ignoreReadonlyClassProperties?: boolean;
ignoreTypeIndexes?: boolean;
}

@@ -17,0 +18,0 @@

@@ -10,2 +10,3 @@ import type { RuleConfig } from '../rule-config';

allow?: string[];
ignoreOnInitialization?: boolean;
ignoreTypeValueShadow?: boolean;

@@ -12,0 +13,0 @@ ignoreFunctionTypeParameterNameValueShadow?: boolean;

@@ -16,2 +16,3 @@ import type { RuleConfig } from '../rule-config';

caughtErrorsIgnorePattern?: string;
destructuredArrayIgnorePattern?: string;
};

@@ -18,0 +19,0 @@

import type { RuleConfig } from '../rule-config';
/**
* Option.
*/
export interface UnifiedSignaturesOption {
ignoreDifferentlyNamedParameters?: boolean;
}
/**
* Options.
*/
export type UnifiedSignaturesOptions = [UnifiedSignaturesOption?];
/**
* Warns for any two overloads that could be unified into one by using a union or an optional/rest parameter.

@@ -8,3 +20,3 @@ *

*/
export type UnifiedSignaturesRuleConfig = RuleConfig<[]>;
export type UnifiedSignaturesRuleConfig = RuleConfig<UnifiedSignaturesOptions>;

@@ -11,0 +23,0 @@ /**

@@ -18,3 +18,3 @@ import type { RuleConfig } from '../rule-config';

*
* @see [better-regex](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v41.0.0/docs/rules/better-regex.md)
* @see [better-regex](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v42.0.0/docs/rules/better-regex.md)
*/

@@ -26,3 +26,3 @@ export type BetterRegexRuleConfig = RuleConfig<BetterRegexOptions>;

*
* @see [better-regex](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v41.0.0/docs/rules/better-regex.md)
* @see [better-regex](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v42.0.0/docs/rules/better-regex.md)
*/

@@ -33,5 +33,5 @@ export interface BetterRegexRule {

*
* @see [better-regex](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v41.0.0/docs/rules/better-regex.md)
* @see [better-regex](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v42.0.0/docs/rules/better-regex.md)
*/
'unicorn/better-regex': BetterRegexRuleConfig;
}

@@ -19,3 +19,3 @@ import type { RuleConfig } from '../rule-config';

*
* @see [catch-error-name](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v41.0.0/docs/rules/catch-error-name.md)
* @see [catch-error-name](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v42.0.0/docs/rules/catch-error-name.md)
*/

@@ -27,3 +27,3 @@ export type CatchErrorNameRuleConfig = RuleConfig<CatchErrorNameOptions>;

*
* @see [catch-error-name](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v41.0.0/docs/rules/catch-error-name.md)
* @see [catch-error-name](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v42.0.0/docs/rules/catch-error-name.md)
*/

@@ -34,5 +34,5 @@ export interface CatchErrorNameRule {

*
* @see [catch-error-name](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v41.0.0/docs/rules/catch-error-name.md)
* @see [catch-error-name](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v42.0.0/docs/rules/catch-error-name.md)
*/
'unicorn/catch-error-name': CatchErrorNameRuleConfig;
}

@@ -6,3 +6,3 @@ import type { RuleConfig } from '../rule-config';

*
* @see [consistent-destructuring](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v41.0.0/docs/rules/consistent-destructuring.md)
* @see [consistent-destructuring](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v42.0.0/docs/rules/consistent-destructuring.md)
*/

@@ -14,3 +14,3 @@ export type ConsistentDestructuringRuleConfig = RuleConfig<[]>;

*
* @see [consistent-destructuring](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v41.0.0/docs/rules/consistent-destructuring.md)
* @see [consistent-destructuring](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v42.0.0/docs/rules/consistent-destructuring.md)
*/

@@ -21,5 +21,5 @@ export interface ConsistentDestructuringRule {

*
* @see [consistent-destructuring](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v41.0.0/docs/rules/consistent-destructuring.md)
* @see [consistent-destructuring](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v42.0.0/docs/rules/consistent-destructuring.md)
*/
'unicorn/consistent-destructuring': ConsistentDestructuringRuleConfig;
}

@@ -20,3 +20,3 @@ import type { RuleConfig } from '../rule-config';

*
* @see [consistent-function-scoping](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v41.0.0/docs/rules/consistent-function-scoping.md)
* @see [consistent-function-scoping](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v42.0.0/docs/rules/consistent-function-scoping.md)
*/

@@ -29,3 +29,3 @@ export type ConsistentFunctionScopingRuleConfig =

*
* @see [consistent-function-scoping](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v41.0.0/docs/rules/consistent-function-scoping.md)
* @see [consistent-function-scoping](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v42.0.0/docs/rules/consistent-function-scoping.md)
*/

@@ -36,5 +36,5 @@ export interface ConsistentFunctionScopingRule {

*
* @see [consistent-function-scoping](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v41.0.0/docs/rules/consistent-function-scoping.md)
* @see [consistent-function-scoping](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v42.0.0/docs/rules/consistent-function-scoping.md)
*/
'unicorn/consistent-function-scoping': ConsistentFunctionScopingRuleConfig;
}

@@ -6,3 +6,3 @@ import type { RuleConfig } from '../rule-config';

*
* @see [custom-error-definition](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v41.0.0/docs/rules/custom-error-definition.md)
* @see [custom-error-definition](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v42.0.0/docs/rules/custom-error-definition.md)
*/

@@ -14,3 +14,3 @@ export type CustomErrorDefinitionRuleConfig = RuleConfig<[]>;

*
* @see [custom-error-definition](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v41.0.0/docs/rules/custom-error-definition.md)
* @see [custom-error-definition](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v42.0.0/docs/rules/custom-error-definition.md)
*/

@@ -21,5 +21,5 @@ export interface CustomErrorDefinitionRule {

*
* @see [custom-error-definition](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v41.0.0/docs/rules/custom-error-definition.md)
* @see [custom-error-definition](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v42.0.0/docs/rules/custom-error-definition.md)
*/
'unicorn/custom-error-definition': CustomErrorDefinitionRuleConfig;
}

@@ -6,3 +6,3 @@ import type { RuleConfig } from '../rule-config';

*
* @see [empty-brace-spaces](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v41.0.0/docs/rules/empty-brace-spaces.md)
* @see [empty-brace-spaces](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v42.0.0/docs/rules/empty-brace-spaces.md)
*/

@@ -14,3 +14,3 @@ export type EmptyBraceSpacesRuleConfig = RuleConfig<[]>;

*
* @see [empty-brace-spaces](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v41.0.0/docs/rules/empty-brace-spaces.md)
* @see [empty-brace-spaces](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v42.0.0/docs/rules/empty-brace-spaces.md)
*/

@@ -21,5 +21,5 @@ export interface EmptyBraceSpacesRule {

*
* @see [empty-brace-spaces](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v41.0.0/docs/rules/empty-brace-spaces.md)
* @see [empty-brace-spaces](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v42.0.0/docs/rules/empty-brace-spaces.md)
*/
'unicorn/empty-brace-spaces': EmptyBraceSpacesRuleConfig;
}

@@ -6,3 +6,3 @@ import type { RuleConfig } from '../rule-config';

*
* @see [error-message](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v41.0.0/docs/rules/error-message.md)
* @see [error-message](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v42.0.0/docs/rules/error-message.md)
*/

@@ -14,3 +14,3 @@ export type ErrorMessageRuleConfig = RuleConfig<[]>;

*
* @see [error-message](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v41.0.0/docs/rules/error-message.md)
* @see [error-message](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v42.0.0/docs/rules/error-message.md)
*/

@@ -21,5 +21,5 @@ export interface ErrorMessageRule {

*
* @see [error-message](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v41.0.0/docs/rules/error-message.md)
* @see [error-message](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v42.0.0/docs/rules/error-message.md)
*/
'unicorn/error-message': ErrorMessageRuleConfig;
}

@@ -6,3 +6,3 @@ import type { RuleConfig } from '../rule-config';

*
* @see [escape-case](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v41.0.0/docs/rules/escape-case.md)
* @see [escape-case](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v42.0.0/docs/rules/escape-case.md)
*/

@@ -14,3 +14,3 @@ export type EscapeCaseRuleConfig = RuleConfig<[]>;

*
* @see [escape-case](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v41.0.0/docs/rules/escape-case.md)
* @see [escape-case](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v42.0.0/docs/rules/escape-case.md)
*/

@@ -21,5 +21,5 @@ export interface EscapeCaseRule {

*
* @see [escape-case](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v41.0.0/docs/rules/escape-case.md)
* @see [escape-case](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v42.0.0/docs/rules/escape-case.md)
*/
'unicorn/escape-case': EscapeCaseRuleConfig;
}

@@ -22,3 +22,3 @@ import type { RuleConfig } from '../rule-config';

*
* @see [expiring-todo-comments](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v41.0.0/docs/rules/expiring-todo-comments.md)
* @see [expiring-todo-comments](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v42.0.0/docs/rules/expiring-todo-comments.md)
*/

@@ -31,3 +31,3 @@ export type ExpiringTodoCommentsRuleConfig =

*
* @see [expiring-todo-comments](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v41.0.0/docs/rules/expiring-todo-comments.md)
* @see [expiring-todo-comments](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v42.0.0/docs/rules/expiring-todo-comments.md)
*/

@@ -38,5 +38,5 @@ export interface ExpiringTodoCommentsRule {

*
* @see [expiring-todo-comments](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v41.0.0/docs/rules/expiring-todo-comments.md)
* @see [expiring-todo-comments](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v42.0.0/docs/rules/expiring-todo-comments.md)
*/
'unicorn/expiring-todo-comments': ExpiringTodoCommentsRuleConfig;
}

@@ -18,3 +18,3 @@ import type { RuleConfig } from '../rule-config';

*
* @see [explicit-length-check](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v41.0.0/docs/rules/explicit-length-check.md)
* @see [explicit-length-check](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v42.0.0/docs/rules/explicit-length-check.md)
*/

@@ -27,3 +27,3 @@ export type ExplicitLengthCheckRuleConfig =

*
* @see [explicit-length-check](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v41.0.0/docs/rules/explicit-length-check.md)
* @see [explicit-length-check](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v42.0.0/docs/rules/explicit-length-check.md)
*/

@@ -34,5 +34,5 @@ export interface ExplicitLengthCheckRule {

*
* @see [explicit-length-check](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v41.0.0/docs/rules/explicit-length-check.md)
* @see [explicit-length-check](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v42.0.0/docs/rules/explicit-length-check.md)
*/
'unicorn/explicit-length-check': ExplicitLengthCheckRuleConfig;
}

@@ -29,3 +29,3 @@ import type { RuleConfig } from '../rule-config';

*
* @see [filename-case](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v41.0.0/docs/rules/filename-case.md)
* @see [filename-case](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v42.0.0/docs/rules/filename-case.md)
*/

@@ -37,3 +37,3 @@ export type FilenameCaseRuleConfig = RuleConfig<FilenameCaseOptions>;

*
* @see [filename-case](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v41.0.0/docs/rules/filename-case.md)
* @see [filename-case](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v42.0.0/docs/rules/filename-case.md)
*/

@@ -44,5 +44,5 @@ export interface FilenameCaseRule {

*
* @see [filename-case](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v41.0.0/docs/rules/filename-case.md)
* @see [filename-case](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v42.0.0/docs/rules/filename-case.md)
*/
'unicorn/filename-case': FilenameCaseRuleConfig;
}

@@ -18,3 +18,3 @@ import type { RuleConfig } from '../rule-config';

*
* @see [import-index](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v41.0.0/docs/rules/import-index.md)
* @see [import-index](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v42.0.0/docs/rules/import-index.md)
*/

@@ -26,3 +26,3 @@ export type ImportIndexRuleConfig = RuleConfig<ImportIndexOptions>;

*
* @see [import-index](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v41.0.0/docs/rules/import-index.md)
* @see [import-index](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v42.0.0/docs/rules/import-index.md)
*/

@@ -33,5 +33,5 @@ export interface ImportIndexRule {

*
* @see [import-index](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v41.0.0/docs/rules/import-index.md)
* @see [import-index](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v42.0.0/docs/rules/import-index.md)
*/
'unicorn/import-index': ImportIndexRuleConfig;
}

@@ -35,3 +35,3 @@ import type { RuleConfig } from '../rule-config';

*
* @see [import-style](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v41.0.0/docs/rules/import-style.md)
* @see [import-style](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v42.0.0/docs/rules/import-style.md)
*/

@@ -43,3 +43,3 @@ export type ImportStyleRuleConfig = RuleConfig<ImportStyleOptions>;

*
* @see [import-style](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v41.0.0/docs/rules/import-style.md)
* @see [import-style](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v42.0.0/docs/rules/import-style.md)
*/

@@ -50,5 +50,5 @@ export interface ImportStyleRule {

*
* @see [import-style](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v41.0.0/docs/rules/import-style.md)
* @see [import-style](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v42.0.0/docs/rules/import-style.md)
*/
'unicorn/import-style': ImportStyleRuleConfig;
}

@@ -44,2 +44,3 @@ import type { BetterRegexRule } from './better-regex';

import type { NoUnreadableArrayDestructuringRule } from './no-unreadable-array-destructuring';
import type { NoUnreadableIifeRule } from './no-unreadable-iife';
import type { NoUnsafeRegexRule } from './no-unsafe-regex';

@@ -51,2 +52,3 @@ import type { NoUnusedPropertiesRule } from './no-unused-properties';

import type { NoUselessSpreadRule } from './no-useless-spread';
import type { NoUselessSwitchCaseRule } from './no-useless-switch-case';
import type { NoUselessUndefinedRule } from './no-useless-undefined';

@@ -80,3 +82,5 @@ import type { NoZeroFractionsRule } from './no-zero-fractions';

import type { PreferModernDomApisRule } from './prefer-modern-dom-apis';
import type { PreferModernMathApisRule } from './prefer-modern-math-apis';
import type { PreferModuleRule } from './prefer-module';
import type { PreferNativeCoercionFunctionsRule } from './prefer-native-coercion-functions';
import type { PreferNegativeIndexRule } from './prefer-negative-index';

@@ -162,2 +166,3 @@ import type { PreferNodeAppendRule } from './prefer-node-append';

NoUnreadableArrayDestructuringRule &
NoUnreadableIifeRule &
NoUnsafeRegexRule &

@@ -169,2 +174,3 @@ NoUnusedPropertiesRule &

NoUselessSpreadRule &
NoUselessSwitchCaseRule &
NoUselessUndefinedRule &

@@ -194,3 +200,5 @@ NoZeroFractionsRule &

PreferModernDomApisRule &
PreferModernMathApisRule &
PreferModuleRule &
PreferNativeCoercionFunctionsRule &
PreferNegativeIndexRule &

@@ -197,0 +205,0 @@ PreferNodeProtocolRule &

@@ -6,3 +6,3 @@ import type { RuleConfig } from '../rule-config';

*
* @see [new-for-builtins](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v41.0.0/docs/rules/new-for-builtins.md)
* @see [new-for-builtins](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v42.0.0/docs/rules/new-for-builtins.md)
*/

@@ -14,3 +14,3 @@ export type NewForBuiltinsRuleConfig = RuleConfig<[]>;

*
* @see [new-for-builtins](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v41.0.0/docs/rules/new-for-builtins.md)
* @see [new-for-builtins](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v42.0.0/docs/rules/new-for-builtins.md)
*/

@@ -21,5 +21,5 @@ export interface NewForBuiltinsRule {

*
* @see [new-for-builtins](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v41.0.0/docs/rules/new-for-builtins.md)
* @see [new-for-builtins](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v42.0.0/docs/rules/new-for-builtins.md)
*/
'unicorn/new-for-builtins': NewForBuiltinsRuleConfig;
}

@@ -6,3 +6,3 @@ import type { RuleConfig } from '../rule-config';

*
* @see [no-abusive-eslint-disable](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v41.0.0/docs/rules/no-abusive-eslint-disable.md)
* @see [no-abusive-eslint-disable](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v42.0.0/docs/rules/no-abusive-eslint-disable.md)
*/

@@ -14,3 +14,3 @@ export type NoAbusiveEslintDisableRuleConfig = RuleConfig<[]>;

*
* @see [no-abusive-eslint-disable](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v41.0.0/docs/rules/no-abusive-eslint-disable.md)
* @see [no-abusive-eslint-disable](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v42.0.0/docs/rules/no-abusive-eslint-disable.md)
*/

@@ -21,5 +21,5 @@ export interface NoAbusiveEslintDisableRule {

*
* @see [no-abusive-eslint-disable](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v41.0.0/docs/rules/no-abusive-eslint-disable.md)
* @see [no-abusive-eslint-disable](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v42.0.0/docs/rules/no-abusive-eslint-disable.md)
*/
'unicorn/no-abusive-eslint-disable': NoAbusiveEslintDisableRuleConfig;
}

@@ -6,3 +6,3 @@ import type { RuleConfig } from '../rule-config';

*
* @see [no-array-callback-reference](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v41.0.0/docs/rules/no-array-callback-reference.md)
* @see [no-array-callback-reference](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v42.0.0/docs/rules/no-array-callback-reference.md)
*/

@@ -14,3 +14,3 @@ export type NoArrayCallbackReferenceRuleConfig = RuleConfig<[]>;

*
* @see [no-array-callback-reference](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v41.0.0/docs/rules/no-array-callback-reference.md)
* @see [no-array-callback-reference](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v42.0.0/docs/rules/no-array-callback-reference.md)
*/

@@ -21,5 +21,5 @@ export interface NoArrayCallbackReferenceRule {

*
* @see [no-array-callback-reference](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v41.0.0/docs/rules/no-array-callback-reference.md)
* @see [no-array-callback-reference](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v42.0.0/docs/rules/no-array-callback-reference.md)
*/
'unicorn/no-array-callback-reference': NoArrayCallbackReferenceRuleConfig;
}

@@ -6,3 +6,3 @@ import type { RuleConfig } from '../rule-config';

*
* @see [no-array-for-each](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v41.0.0/docs/rules/no-array-for-each.md)
* @see [no-array-for-each](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v42.0.0/docs/rules/no-array-for-each.md)
*/

@@ -14,3 +14,3 @@ export type NoArrayForEachRuleConfig = RuleConfig<[]>;

*
* @see [no-array-for-each](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v41.0.0/docs/rules/no-array-for-each.md)
* @see [no-array-for-each](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v42.0.0/docs/rules/no-array-for-each.md)
*/

@@ -21,5 +21,5 @@ export interface NoArrayForEachRule {

*
* @see [no-array-for-each](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v41.0.0/docs/rules/no-array-for-each.md)
* @see [no-array-for-each](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v42.0.0/docs/rules/no-array-for-each.md)
*/
'unicorn/no-array-for-each': NoArrayForEachRuleConfig;
}

@@ -8,3 +8,3 @@ import type { RuleConfig } from '../rule-config';

*
* @see [no-array-instanceof](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v41.0.0/docs/deprecated-rules.md#no-array-instanceof)
* @see [no-array-instanceof](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v42.0.0/docs/deprecated-rules.md#no-array-instanceof)
*/

@@ -18,3 +18,3 @@ export type NoArrayInstanceofRuleConfig = RuleConfig<[]>;

*
* @see [no-array-instanceof](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v41.0.0/docs/deprecated-rules.md#no-array-instanceof)
* @see [no-array-instanceof](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v42.0.0/docs/deprecated-rules.md#no-array-instanceof)
*/

@@ -27,5 +27,5 @@ export interface NoArrayInstanceofRule {

*
* @see [no-array-instanceof](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v41.0.0/docs/deprecated-rules.md#no-array-instanceof)
* @see [no-array-instanceof](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v42.0.0/docs/deprecated-rules.md#no-array-instanceof)
*/
'unicorn/no-array-instanceof': NoArrayInstanceofRuleConfig;
}

@@ -6,3 +6,3 @@ import type { RuleConfig } from '../rule-config';

*
* @see [no-array-method-this-argument](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v41.0.0/docs/rules/no-array-method-this-argument.md)
* @see [no-array-method-this-argument](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v42.0.0/docs/rules/no-array-method-this-argument.md)
*/

@@ -14,3 +14,3 @@ export type NoArrayMethodThisArgumentRuleConfig = RuleConfig<[]>;

*
* @see [no-array-method-this-argument](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v41.0.0/docs/rules/no-array-method-this-argument.md)
* @see [no-array-method-this-argument](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v42.0.0/docs/rules/no-array-method-this-argument.md)
*/

@@ -21,5 +21,5 @@ export interface NoArrayMethodThisArgumentRule {

*
* @see [no-array-method-this-argument](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v41.0.0/docs/rules/no-array-method-this-argument.md)
* @see [no-array-method-this-argument](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v42.0.0/docs/rules/no-array-method-this-argument.md)
*/
'unicorn/no-array-method-this-argument': NoArrayMethodThisArgumentRuleConfig;
}

@@ -18,3 +18,3 @@ import type { RuleConfig } from '../rule-config';

*
* @see [no-array-push-push](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v41.0.0/docs/rules/no-array-push-push.md)
* @see [no-array-push-push](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v42.0.0/docs/rules/no-array-push-push.md)
*/

@@ -26,3 +26,3 @@ export type NoArrayPushPushRuleConfig = RuleConfig<NoArrayPushPushOptions>;

*
* @see [no-array-push-push](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v41.0.0/docs/rules/no-array-push-push.md)
* @see [no-array-push-push](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v42.0.0/docs/rules/no-array-push-push.md)
*/

@@ -33,5 +33,5 @@ export interface NoArrayPushPushRule {

*
* @see [no-array-push-push](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v41.0.0/docs/rules/no-array-push-push.md)
* @see [no-array-push-push](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v42.0.0/docs/rules/no-array-push-push.md)
*/
'unicorn/no-array-push-push': NoArrayPushPushRuleConfig;
}

@@ -18,3 +18,3 @@ import type { RuleConfig } from '../rule-config';

*
* @see [no-array-reduce](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v41.0.0/docs/rules/no-array-reduce.md)
* @see [no-array-reduce](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v42.0.0/docs/rules/no-array-reduce.md)
*/

@@ -26,3 +26,3 @@ export type NoArrayReduceRuleConfig = RuleConfig<NoArrayReduceOptions>;

*
* @see [no-array-reduce](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v41.0.0/docs/rules/no-array-reduce.md)
* @see [no-array-reduce](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v42.0.0/docs/rules/no-array-reduce.md)
*/

@@ -33,5 +33,5 @@ export interface NoArrayReduceRule {

*
* @see [no-array-reduce](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v41.0.0/docs/rules/no-array-reduce.md)
* @see [no-array-reduce](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v42.0.0/docs/rules/no-array-reduce.md)
*/
'unicorn/no-array-reduce': NoArrayReduceRuleConfig;
}
import type { RuleConfig } from '../rule-config';
/**
* Forbid member access from await expression.
* Disallow member access from await expression.
*
* @see [no-await-expression-member](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v41.0.0/docs/rules/no-await-expression-member.md)
* @see [no-await-expression-member](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v42.0.0/docs/rules/no-await-expression-member.md)
*/

@@ -11,13 +11,13 @@ export type NoAwaitExpressionMemberRuleConfig = RuleConfig<[]>;

/**
* Forbid member access from await expression.
* Disallow member access from await expression.
*
* @see [no-await-expression-member](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v41.0.0/docs/rules/no-await-expression-member.md)
* @see [no-await-expression-member](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v42.0.0/docs/rules/no-await-expression-member.md)
*/
export interface NoAwaitExpressionMemberRule {
/**
* Forbid member access from await expression.
* Disallow member access from await expression.
*
* @see [no-await-expression-member](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v41.0.0/docs/rules/no-await-expression-member.md)
* @see [no-await-expression-member](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v42.0.0/docs/rules/no-await-expression-member.md)
*/
'unicorn/no-await-expression-member': NoAwaitExpressionMemberRuleConfig;
}

@@ -6,3 +6,3 @@ import type { RuleConfig } from '../rule-config';

*
* @see [no-console-spaces](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v41.0.0/docs/rules/no-console-spaces.md)
* @see [no-console-spaces](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v42.0.0/docs/rules/no-console-spaces.md)
*/

@@ -14,3 +14,3 @@ export type NoConsoleSpacesRuleConfig = RuleConfig<[]>;

*
* @see [no-console-spaces](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v41.0.0/docs/rules/no-console-spaces.md)
* @see [no-console-spaces](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v42.0.0/docs/rules/no-console-spaces.md)
*/

@@ -21,5 +21,5 @@ export interface NoConsoleSpacesRule {

*
* @see [no-console-spaces](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v41.0.0/docs/rules/no-console-spaces.md)
* @see [no-console-spaces](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v42.0.0/docs/rules/no-console-spaces.md)
*/
'unicorn/no-console-spaces': NoConsoleSpacesRuleConfig;
}

@@ -6,3 +6,3 @@ import type { RuleConfig } from '../rule-config';

*
* @see [no-document-cookie](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v41.0.0/docs/rules/no-document-cookie.md)
* @see [no-document-cookie](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v42.0.0/docs/rules/no-document-cookie.md)
*/

@@ -14,3 +14,3 @@ export type NoDocumentCookieRuleConfig = RuleConfig<[]>;

*
* @see [no-document-cookie](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v41.0.0/docs/rules/no-document-cookie.md)
* @see [no-document-cookie](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v42.0.0/docs/rules/no-document-cookie.md)
*/

@@ -21,5 +21,5 @@ export interface NoDocumentCookieRule {

*
* @see [no-document-cookie](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v41.0.0/docs/rules/no-document-cookie.md)
* @see [no-document-cookie](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v42.0.0/docs/rules/no-document-cookie.md)
*/
'unicorn/no-document-cookie': NoDocumentCookieRuleConfig;
}

@@ -6,3 +6,3 @@ import type { RuleConfig } from '../rule-config';

*
* @see [no-empty-file](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v41.0.0/docs/rules/no-empty-file.md)
* @see [no-empty-file](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v42.0.0/docs/rules/no-empty-file.md)
*/

@@ -14,3 +14,3 @@ export type NoEmptyFileRuleConfig = RuleConfig<[]>;

*
* @see [no-empty-file](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v41.0.0/docs/rules/no-empty-file.md)
* @see [no-empty-file](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v42.0.0/docs/rules/no-empty-file.md)
*/

@@ -21,5 +21,5 @@ export interface NoEmptyFileRule {

*
* @see [no-empty-file](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v41.0.0/docs/rules/no-empty-file.md)
* @see [no-empty-file](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v42.0.0/docs/rules/no-empty-file.md)
*/
'unicorn/no-empty-file': NoEmptyFileRuleConfig;
}

@@ -8,3 +8,3 @@ import type { RuleConfig } from '../rule-config';

*
* @see [no-fn-reference-in-iterator](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v41.0.0/docs/deprecated-rules.md#no-fn-reference-in-iterator)
* @see [no-fn-reference-in-iterator](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v42.0.0/docs/deprecated-rules.md#no-fn-reference-in-iterator)
*/

@@ -18,3 +18,3 @@ export type NoFnReferenceInIteratorRuleConfig = RuleConfig<[]>;

*
* @see [no-fn-reference-in-iterator](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v41.0.0/docs/deprecated-rules.md#no-fn-reference-in-iterator)
* @see [no-fn-reference-in-iterator](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v42.0.0/docs/deprecated-rules.md#no-fn-reference-in-iterator)
*/

@@ -27,5 +27,5 @@ export interface NoFnReferenceInIteratorRule {

*
* @see [no-fn-reference-in-iterator](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v41.0.0/docs/deprecated-rules.md#no-fn-reference-in-iterator)
* @see [no-fn-reference-in-iterator](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v42.0.0/docs/deprecated-rules.md#no-fn-reference-in-iterator)
*/
'unicorn/no-fn-reference-in-iterator': NoFnReferenceInIteratorRuleConfig;
}

@@ -6,3 +6,3 @@ import type { RuleConfig } from '../rule-config';

*
* @see [no-for-loop](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v41.0.0/docs/rules/no-for-loop.md)
* @see [no-for-loop](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v42.0.0/docs/rules/no-for-loop.md)
*/

@@ -14,3 +14,3 @@ export type NoForLoopRuleConfig = RuleConfig<[]>;

*
* @see [no-for-loop](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v41.0.0/docs/rules/no-for-loop.md)
* @see [no-for-loop](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v42.0.0/docs/rules/no-for-loop.md)
*/

@@ -21,5 +21,5 @@ export interface NoForLoopRule {

*
* @see [no-for-loop](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v41.0.0/docs/rules/no-for-loop.md)
* @see [no-for-loop](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v42.0.0/docs/rules/no-for-loop.md)
*/
'unicorn/no-for-loop': NoForLoopRuleConfig;
}

@@ -6,3 +6,3 @@ import type { RuleConfig } from '../rule-config';

*
* @see [no-hex-escape](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v41.0.0/docs/rules/no-hex-escape.md)
* @see [no-hex-escape](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v42.0.0/docs/rules/no-hex-escape.md)
*/

@@ -14,3 +14,3 @@ export type NoHexEscapeRuleConfig = RuleConfig<[]>;

*
* @see [no-hex-escape](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v41.0.0/docs/rules/no-hex-escape.md)
* @see [no-hex-escape](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v42.0.0/docs/rules/no-hex-escape.md)
*/

@@ -21,5 +21,5 @@ export interface NoHexEscapeRule {

*
* @see [no-hex-escape](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v41.0.0/docs/rules/no-hex-escape.md)
* @see [no-hex-escape](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v42.0.0/docs/rules/no-hex-escape.md)
*/
'unicorn/no-hex-escape': NoHexEscapeRuleConfig;
}

@@ -6,3 +6,3 @@ import type { RuleConfig } from '../rule-config';

*
* @see [no-instanceof-array](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v41.0.0/docs/rules/no-instanceof-array.md)
* @see [no-instanceof-array](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v42.0.0/docs/rules/no-instanceof-array.md)
*/

@@ -14,3 +14,3 @@ export type NoInstanceofArrayRuleConfig = RuleConfig<[]>;

*
* @see [no-instanceof-array](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v41.0.0/docs/rules/no-instanceof-array.md)
* @see [no-instanceof-array](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v42.0.0/docs/rules/no-instanceof-array.md)
*/

@@ -21,5 +21,5 @@ export interface NoInstanceofArrayRule {

*
* @see [no-instanceof-array](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v41.0.0/docs/rules/no-instanceof-array.md)
* @see [no-instanceof-array](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v42.0.0/docs/rules/no-instanceof-array.md)
*/
'unicorn/no-instanceof-array': NoInstanceofArrayRuleConfig;
}

@@ -6,3 +6,3 @@ import type { RuleConfig } from '../rule-config';

*
* @see [no-invalid-remove-event-listener](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v41.0.0/docs/rules/no-invalid-remove-event-listener.md)
* @see [no-invalid-remove-event-listener](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v42.0.0/docs/rules/no-invalid-remove-event-listener.md)
*/

@@ -14,3 +14,3 @@ export type NoInvalidRemoveEventListenerRuleConfig = RuleConfig<[]>;

*
* @see [no-invalid-remove-event-listener](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v41.0.0/docs/rules/no-invalid-remove-event-listener.md)
* @see [no-invalid-remove-event-listener](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v42.0.0/docs/rules/no-invalid-remove-event-listener.md)
*/

@@ -21,5 +21,5 @@ export interface NoInvalidRemoveEventListenerRule {

*
* @see [no-invalid-remove-event-listener](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v41.0.0/docs/rules/no-invalid-remove-event-listener.md)
* @see [no-invalid-remove-event-listener](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v42.0.0/docs/rules/no-invalid-remove-event-listener.md)
*/
'unicorn/no-invalid-remove-event-listener': NoInvalidRemoveEventListenerRuleConfig;
}

@@ -20,3 +20,3 @@ import type { RuleConfig } from '../rule-config';

*
* @see [no-keyword-prefix](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v41.0.0/docs/rules/no-keyword-prefix.md)
* @see [no-keyword-prefix](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v42.0.0/docs/rules/no-keyword-prefix.md)
*/

@@ -28,3 +28,3 @@ export type NoKeywordPrefixRuleConfig = RuleConfig<NoKeywordPrefixOptions>;

*
* @see [no-keyword-prefix](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v41.0.0/docs/rules/no-keyword-prefix.md)
* @see [no-keyword-prefix](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v42.0.0/docs/rules/no-keyword-prefix.md)
*/

@@ -35,5 +35,5 @@ export interface NoKeywordPrefixRule {

*
* @see [no-keyword-prefix](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v41.0.0/docs/rules/no-keyword-prefix.md)
* @see [no-keyword-prefix](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v42.0.0/docs/rules/no-keyword-prefix.md)
*/
'unicorn/no-keyword-prefix': NoKeywordPrefixRuleConfig;
}

@@ -6,3 +6,3 @@ import type { RuleConfig } from '../rule-config';

*
* @see [no-lonely-if](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v41.0.0/docs/rules/no-lonely-if.md)
* @see [no-lonely-if](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v42.0.0/docs/rules/no-lonely-if.md)
*/

@@ -14,3 +14,3 @@ export type NoLonelyIfRuleConfig = RuleConfig<[]>;

*
* @see [no-lonely-if](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v41.0.0/docs/rules/no-lonely-if.md)
* @see [no-lonely-if](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v42.0.0/docs/rules/no-lonely-if.md)
*/

@@ -21,5 +21,5 @@ export interface NoLonelyIfRule {

*
* @see [no-lonely-if](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v41.0.0/docs/rules/no-lonely-if.md)
* @see [no-lonely-if](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v42.0.0/docs/rules/no-lonely-if.md)
*/
'unicorn/no-lonely-if': NoLonelyIfRuleConfig;
}

@@ -6,3 +6,3 @@ import type { RuleConfig } from '../rule-config';

*
* @see [no-nested-ternary](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v41.0.0/docs/rules/no-nested-ternary.md)
* @see [no-nested-ternary](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v42.0.0/docs/rules/no-nested-ternary.md)
*/

@@ -14,3 +14,3 @@ export type NoNestedTernaryRuleConfig = RuleConfig<[]>;

*
* @see [no-nested-ternary](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v41.0.0/docs/rules/no-nested-ternary.md)
* @see [no-nested-ternary](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v42.0.0/docs/rules/no-nested-ternary.md)
*/

@@ -21,5 +21,5 @@ export interface NoNestedTernaryRule {

*
* @see [no-nested-ternary](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v41.0.0/docs/rules/no-nested-ternary.md)
* @see [no-nested-ternary](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v42.0.0/docs/rules/no-nested-ternary.md)
*/
'unicorn/no-nested-ternary': NoNestedTernaryRuleConfig;
}

@@ -6,3 +6,3 @@ import type { RuleConfig } from '../rule-config';

*
* @see [no-new-array](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v41.0.0/docs/rules/no-new-array.md)
* @see [no-new-array](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v42.0.0/docs/rules/no-new-array.md)
*/

@@ -14,3 +14,3 @@ export type NoNewArrayRuleConfig = RuleConfig<[]>;

*
* @see [no-new-array](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v41.0.0/docs/rules/no-new-array.md)
* @see [no-new-array](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v42.0.0/docs/rules/no-new-array.md)
*/

@@ -21,5 +21,5 @@ export interface NoNewArrayRule {

*
* @see [no-new-array](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v41.0.0/docs/rules/no-new-array.md)
* @see [no-new-array](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v42.0.0/docs/rules/no-new-array.md)
*/
'unicorn/no-new-array': NoNewArrayRuleConfig;
}

@@ -6,3 +6,3 @@ import type { RuleConfig } from '../rule-config';

*
* @see [no-new-buffer](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v41.0.0/docs/rules/no-new-buffer.md)
* @see [no-new-buffer](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v42.0.0/docs/rules/no-new-buffer.md)
*/

@@ -14,3 +14,3 @@ export type NoNewBufferRuleConfig = RuleConfig<[]>;

*
* @see [no-new-buffer](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v41.0.0/docs/rules/no-new-buffer.md)
* @see [no-new-buffer](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v42.0.0/docs/rules/no-new-buffer.md)
*/

@@ -21,5 +21,5 @@ export interface NoNewBufferRule {

*
* @see [no-new-buffer](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v41.0.0/docs/rules/no-new-buffer.md)
* @see [no-new-buffer](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v42.0.0/docs/rules/no-new-buffer.md)
*/
'unicorn/no-new-buffer': NoNewBufferRuleConfig;
}

@@ -18,3 +18,3 @@ import type { RuleConfig } from '../rule-config';

*
* @see [no-null](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v41.0.0/docs/rules/no-null.md)
* @see [no-null](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v42.0.0/docs/rules/no-null.md)
*/

@@ -26,3 +26,3 @@ export type NoNullRuleConfig = RuleConfig<NoNullOptions>;

*
* @see [no-null](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v41.0.0/docs/rules/no-null.md)
* @see [no-null](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v42.0.0/docs/rules/no-null.md)
*/

@@ -33,5 +33,5 @@ export interface NoNullRule {

*
* @see [no-null](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v41.0.0/docs/rules/no-null.md)
* @see [no-null](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v42.0.0/docs/rules/no-null.md)
*/
'unicorn/no-null': NoNullRuleConfig;
}

@@ -6,3 +6,3 @@ import type { RuleConfig } from '../rule-config';

*
* @see [no-object-as-default-parameter](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v41.0.0/docs/rules/no-object-as-default-parameter.md)
* @see [no-object-as-default-parameter](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v42.0.0/docs/rules/no-object-as-default-parameter.md)
*/

@@ -14,3 +14,3 @@ export type NoObjectAsDefaultParameterRuleConfig = RuleConfig<[]>;

*
* @see [no-object-as-default-parameter](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v41.0.0/docs/rules/no-object-as-default-parameter.md)
* @see [no-object-as-default-parameter](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v42.0.0/docs/rules/no-object-as-default-parameter.md)
*/

@@ -21,5 +21,5 @@ export interface NoObjectAsDefaultParameterRule {

*
* @see [no-object-as-default-parameter](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v41.0.0/docs/rules/no-object-as-default-parameter.md)
* @see [no-object-as-default-parameter](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v42.0.0/docs/rules/no-object-as-default-parameter.md)
*/
'unicorn/no-object-as-default-parameter': NoObjectAsDefaultParameterRuleConfig;
}

@@ -6,3 +6,3 @@ import type { RuleConfig } from '../rule-config';

*
* @see [no-process-exit](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v41.0.0/docs/rules/no-process-exit.md)
* @see [no-process-exit](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v42.0.0/docs/rules/no-process-exit.md)
*/

@@ -14,3 +14,3 @@ export type NoProcessExitRuleConfig = RuleConfig<[]>;

*
* @see [no-process-exit](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v41.0.0/docs/rules/no-process-exit.md)
* @see [no-process-exit](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v42.0.0/docs/rules/no-process-exit.md)
*/

@@ -21,5 +21,5 @@ export interface NoProcessExitRule {

*
* @see [no-process-exit](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v41.0.0/docs/rules/no-process-exit.md)
* @see [no-process-exit](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v42.0.0/docs/rules/no-process-exit.md)
*/
'unicorn/no-process-exit': NoProcessExitRuleConfig;
}

@@ -8,3 +8,3 @@ import type { RuleConfig } from '../rule-config';

*
* @see [no-reduce](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v41.0.0/docs/deprecated-rules.md#no-reduce)
* @see [no-reduce](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v42.0.0/docs/deprecated-rules.md#no-reduce)
*/

@@ -18,3 +18,3 @@ export type NoReduceRuleConfig = RuleConfig<[]>;

*
* @see [no-reduce](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v41.0.0/docs/deprecated-rules.md#no-reduce)
* @see [no-reduce](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v42.0.0/docs/deprecated-rules.md#no-reduce)
*/

@@ -27,5 +27,5 @@ export interface NoReduceRule {

*
* @see [no-reduce](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v41.0.0/docs/deprecated-rules.md#no-reduce)
* @see [no-reduce](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v42.0.0/docs/deprecated-rules.md#no-reduce)
*/
'unicorn/no-reduce': NoReduceRuleConfig;
}
import type { RuleConfig } from '../rule-config';
/**
* Forbid classes that only have static members.
* Disallow classes that only have static members.
*
* @see [no-static-only-class](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v41.0.0/docs/rules/no-static-only-class.md)
* @see [no-static-only-class](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v42.0.0/docs/rules/no-static-only-class.md)
*/

@@ -11,13 +11,13 @@ export type NoStaticOnlyClassRuleConfig = RuleConfig<[]>;

/**
* Forbid classes that only have static members.
* Disallow classes that only have static members.
*
* @see [no-static-only-class](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v41.0.0/docs/rules/no-static-only-class.md)
* @see [no-static-only-class](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v42.0.0/docs/rules/no-static-only-class.md)
*/
export interface NoStaticOnlyClassRule {
/**
* Forbid classes that only have static members.
* Disallow classes that only have static members.
*
* @see [no-static-only-class](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v41.0.0/docs/rules/no-static-only-class.md)
* @see [no-static-only-class](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v42.0.0/docs/rules/no-static-only-class.md)
*/
'unicorn/no-static-only-class': NoStaticOnlyClassRuleConfig;
}

@@ -6,3 +6,3 @@ import type { RuleConfig } from '../rule-config';

*
* @see [no-thenable](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v41.0.0/docs/rules/no-thenable.md)
* @see [no-thenable](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v42.0.0/docs/rules/no-thenable.md)
*/

@@ -14,3 +14,3 @@ export type NoThenableRuleConfig = RuleConfig<[]>;

*
* @see [no-thenable](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v41.0.0/docs/rules/no-thenable.md)
* @see [no-thenable](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v42.0.0/docs/rules/no-thenable.md)
*/

@@ -21,5 +21,5 @@ export interface NoThenableRule {

*
* @see [no-thenable](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v41.0.0/docs/rules/no-thenable.md)
* @see [no-thenable](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v42.0.0/docs/rules/no-thenable.md)
*/
'unicorn/no-thenable': NoThenableRuleConfig;
}

@@ -6,3 +6,3 @@ import type { RuleConfig } from '../rule-config';

*
* @see [no-this-assignment](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v41.0.0/docs/rules/no-this-assignment.md)
* @see [no-this-assignment](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v42.0.0/docs/rules/no-this-assignment.md)
*/

@@ -14,3 +14,3 @@ export type NoThisAssignmentRuleConfig = RuleConfig<[]>;

*
* @see [no-this-assignment](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v41.0.0/docs/rules/no-this-assignment.md)
* @see [no-this-assignment](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v42.0.0/docs/rules/no-this-assignment.md)
*/

@@ -21,5 +21,5 @@ export interface NoThisAssignmentRule {

*
* @see [no-this-assignment](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v41.0.0/docs/rules/no-this-assignment.md)
* @see [no-this-assignment](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v42.0.0/docs/rules/no-this-assignment.md)
*/
'unicorn/no-this-assignment': NoThisAssignmentRuleConfig;
}

@@ -6,3 +6,3 @@ import type { RuleConfig } from '../rule-config';

*
* @see [no-unreadable-array-destructuring](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v41.0.0/docs/rules/no-unreadable-array-destructuring.md)
* @see [no-unreadable-array-destructuring](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v42.0.0/docs/rules/no-unreadable-array-destructuring.md)
*/

@@ -14,3 +14,3 @@ export type NoUnreadableArrayDestructuringRuleConfig = RuleConfig<[]>;

*
* @see [no-unreadable-array-destructuring](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v41.0.0/docs/rules/no-unreadable-array-destructuring.md)
* @see [no-unreadable-array-destructuring](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v42.0.0/docs/rules/no-unreadable-array-destructuring.md)
*/

@@ -21,5 +21,5 @@ export interface NoUnreadableArrayDestructuringRule {

*
* @see [no-unreadable-array-destructuring](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v41.0.0/docs/rules/no-unreadable-array-destructuring.md)
* @see [no-unreadable-array-destructuring](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v42.0.0/docs/rules/no-unreadable-array-destructuring.md)
*/
'unicorn/no-unreadable-array-destructuring': NoUnreadableArrayDestructuringRuleConfig;
}

@@ -6,3 +6,3 @@ import type { RuleConfig } from '../rule-config';

*
* @see [no-unsafe-regex](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v41.0.0/docs/rules/no-unsafe-regex.md)
* @see [no-unsafe-regex](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v42.0.0/docs/rules/no-unsafe-regex.md)
*/

@@ -14,3 +14,3 @@ export type NoUnsafeRegexRuleConfig = RuleConfig<[]>;

*
* @see [no-unsafe-regex](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v41.0.0/docs/rules/no-unsafe-regex.md)
* @see [no-unsafe-regex](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v42.0.0/docs/rules/no-unsafe-regex.md)
*/

@@ -21,5 +21,5 @@ export interface NoUnsafeRegexRule {

*
* @see [no-unsafe-regex](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v41.0.0/docs/rules/no-unsafe-regex.md)
* @see [no-unsafe-regex](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v42.0.0/docs/rules/no-unsafe-regex.md)
*/
'unicorn/no-unsafe-regex': NoUnsafeRegexRuleConfig;
}

@@ -6,3 +6,3 @@ import type { RuleConfig } from '../rule-config';

*
* @see [no-unused-properties](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v41.0.0/docs/rules/no-unused-properties.md)
* @see [no-unused-properties](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v42.0.0/docs/rules/no-unused-properties.md)
*/

@@ -14,3 +14,3 @@ export type NoUnusedPropertiesRuleConfig = RuleConfig<[]>;

*
* @see [no-unused-properties](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v41.0.0/docs/rules/no-unused-properties.md)
* @see [no-unused-properties](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v42.0.0/docs/rules/no-unused-properties.md)
*/

@@ -21,5 +21,5 @@ export interface NoUnusedPropertiesRule {

*
* @see [no-unused-properties](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v41.0.0/docs/rules/no-unused-properties.md)
* @see [no-unused-properties](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v42.0.0/docs/rules/no-unused-properties.md)
*/
'unicorn/no-unused-properties': NoUnusedPropertiesRuleConfig;
}
import type { RuleConfig } from '../rule-config';
/**
* Forbid useless fallback when spreading in object literals.
* Disallow useless fallback when spreading in object literals.
*
* @see [no-useless-fallback-in-spread](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v41.0.0/docs/rules/no-useless-fallback-in-spread.md)
* @see [no-useless-fallback-in-spread](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v42.0.0/docs/rules/no-useless-fallback-in-spread.md)
*/

@@ -11,13 +11,13 @@ export type NoUselessFallbackInSpreadRuleConfig = RuleConfig<[]>;

/**
* Forbid useless fallback when spreading in object literals.
* Disallow useless fallback when spreading in object literals.
*
* @see [no-useless-fallback-in-spread](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v41.0.0/docs/rules/no-useless-fallback-in-spread.md)
* @see [no-useless-fallback-in-spread](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v42.0.0/docs/rules/no-useless-fallback-in-spread.md)
*/
export interface NoUselessFallbackInSpreadRule {
/**
* Forbid useless fallback when spreading in object literals.
* Disallow useless fallback when spreading in object literals.
*
* @see [no-useless-fallback-in-spread](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v41.0.0/docs/rules/no-useless-fallback-in-spread.md)
* @see [no-useless-fallback-in-spread](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v42.0.0/docs/rules/no-useless-fallback-in-spread.md)
*/
'unicorn/no-useless-fallback-in-spread': NoUselessFallbackInSpreadRuleConfig;
}

@@ -6,3 +6,3 @@ import type { RuleConfig } from '../rule-config';

*
* @see [no-useless-length-check](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v41.0.0/docs/rules/no-useless-length-check.md)
* @see [no-useless-length-check](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v42.0.0/docs/rules/no-useless-length-check.md)
*/

@@ -14,3 +14,3 @@ export type NoUselessLengthCheckRuleConfig = RuleConfig<[]>;

*
* @see [no-useless-length-check](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v41.0.0/docs/rules/no-useless-length-check.md)
* @see [no-useless-length-check](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v42.0.0/docs/rules/no-useless-length-check.md)
*/

@@ -21,5 +21,5 @@ export interface NoUselessLengthCheckRule {

*
* @see [no-useless-length-check](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v41.0.0/docs/rules/no-useless-length-check.md)
* @see [no-useless-length-check](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v42.0.0/docs/rules/no-useless-length-check.md)
*/
'unicorn/no-useless-length-check': NoUselessLengthCheckRuleConfig;
}

@@ -6,3 +6,3 @@ import type { RuleConfig } from '../rule-config';

*
* @see [no-useless-promise-resolve-reject](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v41.0.0/docs/rules/no-useless-promise-resolve-reject.md)
* @see [no-useless-promise-resolve-reject](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v42.0.0/docs/rules/no-useless-promise-resolve-reject.md)
*/

@@ -14,3 +14,3 @@ export type NoUselessPromiseResolveRejectRuleConfig = RuleConfig<[]>;

*
* @see [no-useless-promise-resolve-reject](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v41.0.0/docs/rules/no-useless-promise-resolve-reject.md)
* @see [no-useless-promise-resolve-reject](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v42.0.0/docs/rules/no-useless-promise-resolve-reject.md)
*/

@@ -21,5 +21,5 @@ export interface NoUselessPromiseResolveRejectRule {

*
* @see [no-useless-promise-resolve-reject](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v41.0.0/docs/rules/no-useless-promise-resolve-reject.md)
* @see [no-useless-promise-resolve-reject](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v42.0.0/docs/rules/no-useless-promise-resolve-reject.md)
*/
'unicorn/no-useless-promise-resolve-reject': NoUselessPromiseResolveRejectRuleConfig;
}

@@ -6,3 +6,3 @@ import type { RuleConfig } from '../rule-config';

*
* @see [no-useless-spread](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v41.0.0/docs/rules/no-useless-spread.md)
* @see [no-useless-spread](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v42.0.0/docs/rules/no-useless-spread.md)
*/

@@ -14,3 +14,3 @@ export type NoUselessSpreadRuleConfig = RuleConfig<[]>;

*
* @see [no-useless-spread](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v41.0.0/docs/rules/no-useless-spread.md)
* @see [no-useless-spread](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v42.0.0/docs/rules/no-useless-spread.md)
*/

@@ -21,5 +21,5 @@ export interface NoUselessSpreadRule {

*
* @see [no-useless-spread](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v41.0.0/docs/rules/no-useless-spread.md)
* @see [no-useless-spread](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v42.0.0/docs/rules/no-useless-spread.md)
*/
'unicorn/no-useless-spread': NoUselessSpreadRuleConfig;
}

@@ -18,3 +18,3 @@ import type { RuleConfig } from '../rule-config';

*
* @see [no-useless-undefined](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v41.0.0/docs/rules/no-useless-undefined.md)
* @see [no-useless-undefined](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v42.0.0/docs/rules/no-useless-undefined.md)
*/

@@ -27,3 +27,3 @@ export type NoUselessUndefinedRuleConfig =

*
* @see [no-useless-undefined](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v41.0.0/docs/rules/no-useless-undefined.md)
* @see [no-useless-undefined](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v42.0.0/docs/rules/no-useless-undefined.md)
*/

@@ -34,5 +34,5 @@ export interface NoUselessUndefinedRule {

*
* @see [no-useless-undefined](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v41.0.0/docs/rules/no-useless-undefined.md)
* @see [no-useless-undefined](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v42.0.0/docs/rules/no-useless-undefined.md)
*/
'unicorn/no-useless-undefined': NoUselessUndefinedRuleConfig;
}

@@ -6,3 +6,3 @@ import type { RuleConfig } from '../rule-config';

*
* @see [no-zero-fractions](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v41.0.0/docs/rules/no-zero-fractions.md)
* @see [no-zero-fractions](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v42.0.0/docs/rules/no-zero-fractions.md)
*/

@@ -14,3 +14,3 @@ export type NoZeroFractionsRuleConfig = RuleConfig<[]>;

*
* @see [no-zero-fractions](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v41.0.0/docs/rules/no-zero-fractions.md)
* @see [no-zero-fractions](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v42.0.0/docs/rules/no-zero-fractions.md)
*/

@@ -21,5 +21,5 @@ export interface NoZeroFractionsRule {

*
* @see [no-zero-fractions](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v41.0.0/docs/rules/no-zero-fractions.md)
* @see [no-zero-fractions](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v42.0.0/docs/rules/no-zero-fractions.md)
*/
'unicorn/no-zero-fractions': NoZeroFractionsRuleConfig;
}

@@ -6,3 +6,3 @@ import type { RuleConfig } from '../rule-config';

*
* @see [number-literal-case](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v41.0.0/docs/rules/number-literal-case.md)
* @see [number-literal-case](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v42.0.0/docs/rules/number-literal-case.md)
*/

@@ -14,3 +14,3 @@ export type NumberLiteralCaseRuleConfig = RuleConfig<[]>;

*
* @see [number-literal-case](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v41.0.0/docs/rules/number-literal-case.md)
* @see [number-literal-case](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v42.0.0/docs/rules/number-literal-case.md)
*/

@@ -21,5 +21,5 @@ export interface NumberLiteralCaseRule {

*
* @see [number-literal-case](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v41.0.0/docs/rules/number-literal-case.md)
* @see [number-literal-case](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v42.0.0/docs/rules/number-literal-case.md)
*/
'unicorn/number-literal-case': NumberLiteralCaseRuleConfig;
}

@@ -38,3 +38,3 @@ import type { RuleConfig } from '../rule-config';

*
* @see [numeric-separators-style](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v41.0.0/docs/rules/numeric-separators-style.md)
* @see [numeric-separators-style](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v42.0.0/docs/rules/numeric-separators-style.md)
*/

@@ -47,3 +47,3 @@ export type NumericSeparatorsStyleRuleConfig =

*
* @see [numeric-separators-style](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v41.0.0/docs/rules/numeric-separators-style.md)
* @see [numeric-separators-style](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v42.0.0/docs/rules/numeric-separators-style.md)
*/

@@ -54,5 +54,5 @@ export interface NumericSeparatorsStyleRule {

*
* @see [numeric-separators-style](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v41.0.0/docs/rules/numeric-separators-style.md)
* @see [numeric-separators-style](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v42.0.0/docs/rules/numeric-separators-style.md)
*/
'unicorn/numeric-separators-style': NumericSeparatorsStyleRuleConfig;
}

@@ -18,3 +18,3 @@ import type { RuleConfig } from '../rule-config';

*
* @see [prefer-add-event-listener](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v41.0.0/docs/rules/prefer-add-event-listener.md)
* @see [prefer-add-event-listener](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v42.0.0/docs/rules/prefer-add-event-listener.md)
*/

@@ -27,3 +27,3 @@ export type PreferAddEventListenerRuleConfig =

*
* @see [prefer-add-event-listener](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v41.0.0/docs/rules/prefer-add-event-listener.md)
* @see [prefer-add-event-listener](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v42.0.0/docs/rules/prefer-add-event-listener.md)
*/

@@ -34,5 +34,5 @@ export interface PreferAddEventListenerRule {

*
* @see [prefer-add-event-listener](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v41.0.0/docs/rules/prefer-add-event-listener.md)
* @see [prefer-add-event-listener](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v42.0.0/docs/rules/prefer-add-event-listener.md)
*/
'unicorn/prefer-add-event-listener': PreferAddEventListenerRuleConfig;
}

@@ -6,3 +6,3 @@ import type { RuleConfig } from '../rule-config';

*
* @see [prefer-array-find](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v41.0.0/docs/rules/prefer-array-find.md)
* @see [prefer-array-find](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v42.0.0/docs/rules/prefer-array-find.md)
*/

@@ -14,3 +14,3 @@ export type PreferArrayFindRuleConfig = RuleConfig<[]>;

*
* @see [prefer-array-find](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v41.0.0/docs/rules/prefer-array-find.md)
* @see [prefer-array-find](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v42.0.0/docs/rules/prefer-array-find.md)
*/

@@ -21,5 +21,5 @@ export interface PreferArrayFindRule {

*
* @see [prefer-array-find](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v41.0.0/docs/rules/prefer-array-find.md)
* @see [prefer-array-find](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v42.0.0/docs/rules/prefer-array-find.md)
*/
'unicorn/prefer-array-find': PreferArrayFindRuleConfig;
}

@@ -6,3 +6,3 @@ import type { RuleConfig } from '../rule-config';

*
* @see [prefer-array-flat-map](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v41.0.0/docs/rules/prefer-array-flat-map.md)
* @see [prefer-array-flat-map](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v42.0.0/docs/rules/prefer-array-flat-map.md)
*/

@@ -14,3 +14,3 @@ export type PreferArrayFlatMapRuleConfig = RuleConfig<[]>;

*
* @see [prefer-array-flat-map](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v41.0.0/docs/rules/prefer-array-flat-map.md)
* @see [prefer-array-flat-map](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v42.0.0/docs/rules/prefer-array-flat-map.md)
*/

@@ -21,5 +21,5 @@ export interface PreferArrayFlatMapRule {

*
* @see [prefer-array-flat-map](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v41.0.0/docs/rules/prefer-array-flat-map.md)
* @see [prefer-array-flat-map](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v42.0.0/docs/rules/prefer-array-flat-map.md)
*/
'unicorn/prefer-array-flat-map': PreferArrayFlatMapRuleConfig;
}

@@ -18,3 +18,3 @@ import type { RuleConfig } from '../rule-config';

*
* @see [prefer-array-flat](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v41.0.0/docs/rules/prefer-array-flat.md)
* @see [prefer-array-flat](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v42.0.0/docs/rules/prefer-array-flat.md)
*/

@@ -26,3 +26,3 @@ export type PreferArrayFlatRuleConfig = RuleConfig<PreferArrayFlatOptions>;

*
* @see [prefer-array-flat](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v41.0.0/docs/rules/prefer-array-flat.md)
* @see [prefer-array-flat](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v42.0.0/docs/rules/prefer-array-flat.md)
*/

@@ -33,5 +33,5 @@ export interface PreferArrayFlatRule {

*
* @see [prefer-array-flat](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v41.0.0/docs/rules/prefer-array-flat.md)
* @see [prefer-array-flat](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v42.0.0/docs/rules/prefer-array-flat.md)
*/
'unicorn/prefer-array-flat': PreferArrayFlatRuleConfig;
}

@@ -6,3 +6,3 @@ import type { RuleConfig } from '../rule-config';

*
* @see [prefer-array-index-of](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v41.0.0/docs/rules/prefer-array-index-of.md)
* @see [prefer-array-index-of](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v42.0.0/docs/rules/prefer-array-index-of.md)
*/

@@ -14,3 +14,3 @@ export type PreferArrayIndexOfRuleConfig = RuleConfig<[]>;

*
* @see [prefer-array-index-of](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v41.0.0/docs/rules/prefer-array-index-of.md)
* @see [prefer-array-index-of](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v42.0.0/docs/rules/prefer-array-index-of.md)
*/

@@ -21,5 +21,5 @@ export interface PreferArrayIndexOfRule {

*
* @see [prefer-array-index-of](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v41.0.0/docs/rules/prefer-array-index-of.md)
* @see [prefer-array-index-of](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v42.0.0/docs/rules/prefer-array-index-of.md)
*/
'unicorn/prefer-array-index-of': PreferArrayIndexOfRuleConfig;
}

@@ -6,3 +6,3 @@ import type { RuleConfig } from '../rule-config';

*
* @see [prefer-array-some](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v41.0.0/docs/rules/prefer-array-some.md)
* @see [prefer-array-some](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v42.0.0/docs/rules/prefer-array-some.md)
*/

@@ -14,3 +14,3 @@ export type PreferArraySomeRuleConfig = RuleConfig<[]>;

*
* @see [prefer-array-some](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v41.0.0/docs/rules/prefer-array-some.md)
* @see [prefer-array-some](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v42.0.0/docs/rules/prefer-array-some.md)
*/

@@ -21,5 +21,5 @@ export interface PreferArraySomeRule {

*
* @see [prefer-array-some](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v41.0.0/docs/rules/prefer-array-some.md)
* @see [prefer-array-some](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v42.0.0/docs/rules/prefer-array-some.md)
*/
'unicorn/prefer-array-some': PreferArraySomeRuleConfig;
}

@@ -19,3 +19,3 @@ import type { RuleConfig } from '../rule-config';

*
* @see [prefer-at](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v41.0.0/docs/rules/prefer-at.md)
* @see [prefer-at](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v42.0.0/docs/rules/prefer-at.md)
*/

@@ -27,3 +27,3 @@ export type PreferAtRuleConfig = RuleConfig<PreferAtOptions>;

*
* @see [prefer-at](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v41.0.0/docs/rules/prefer-at.md)
* @see [prefer-at](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v42.0.0/docs/rules/prefer-at.md)
*/

@@ -34,5 +34,5 @@ export interface PreferAtRule {

*
* @see [prefer-at](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v41.0.0/docs/rules/prefer-at.md)
* @see [prefer-at](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v42.0.0/docs/rules/prefer-at.md)
*/
'unicorn/prefer-at': PreferAtRuleConfig;
}

@@ -6,3 +6,3 @@ import type { RuleConfig } from '../rule-config';

*
* @see [prefer-code-point](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v41.0.0/docs/rules/prefer-code-point.md)
* @see [prefer-code-point](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v42.0.0/docs/rules/prefer-code-point.md)
*/

@@ -14,3 +14,3 @@ export type PreferCodePointRuleConfig = RuleConfig<[]>;

*
* @see [prefer-code-point](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v41.0.0/docs/rules/prefer-code-point.md)
* @see [prefer-code-point](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v42.0.0/docs/rules/prefer-code-point.md)
*/

@@ -21,5 +21,5 @@ export interface PreferCodePointRule {

*
* @see [prefer-code-point](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v41.0.0/docs/rules/prefer-code-point.md)
* @see [prefer-code-point](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v42.0.0/docs/rules/prefer-code-point.md)
*/
'unicorn/prefer-code-point': PreferCodePointRuleConfig;
}

@@ -8,3 +8,3 @@ import type { RuleConfig } from '../rule-config';

*
* @see [prefer-dataset](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v41.0.0/docs/deprecated-rules.md#prefer-dataset)
* @see [prefer-dataset](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v42.0.0/docs/deprecated-rules.md#prefer-dataset)
*/

@@ -18,3 +18,3 @@ export type PreferDatasetRuleConfig = RuleConfig<[]>;

*
* @see [prefer-dataset](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v41.0.0/docs/deprecated-rules.md#prefer-dataset)
* @see [prefer-dataset](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v42.0.0/docs/deprecated-rules.md#prefer-dataset)
*/

@@ -27,5 +27,5 @@ export interface PreferDatasetRule {

*
* @see [prefer-dataset](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v41.0.0/docs/deprecated-rules.md#prefer-dataset)
* @see [prefer-dataset](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v42.0.0/docs/deprecated-rules.md#prefer-dataset)
*/
'unicorn/prefer-dataset': PreferDatasetRuleConfig;
}

@@ -6,3 +6,3 @@ import type { RuleConfig } from '../rule-config';

*
* @see [prefer-date-now](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v41.0.0/docs/rules/prefer-date-now.md)
* @see [prefer-date-now](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v42.0.0/docs/rules/prefer-date-now.md)
*/

@@ -14,3 +14,3 @@ export type PreferDateNowRuleConfig = RuleConfig<[]>;

*
* @see [prefer-date-now](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v41.0.0/docs/rules/prefer-date-now.md)
* @see [prefer-date-now](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v42.0.0/docs/rules/prefer-date-now.md)
*/

@@ -21,5 +21,5 @@ export interface PreferDateNowRule {

*
* @see [prefer-date-now](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v41.0.0/docs/rules/prefer-date-now.md)
* @see [prefer-date-now](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v42.0.0/docs/rules/prefer-date-now.md)
*/
'unicorn/prefer-date-now': PreferDateNowRuleConfig;
}

@@ -6,3 +6,3 @@ import type { RuleConfig } from '../rule-config';

*
* @see [prefer-default-parameters](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v41.0.0/docs/rules/prefer-default-parameters.md)
* @see [prefer-default-parameters](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v42.0.0/docs/rules/prefer-default-parameters.md)
*/

@@ -14,3 +14,3 @@ export type PreferDefaultParametersRuleConfig = RuleConfig<[]>;

*
* @see [prefer-default-parameters](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v41.0.0/docs/rules/prefer-default-parameters.md)
* @see [prefer-default-parameters](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v42.0.0/docs/rules/prefer-default-parameters.md)
*/

@@ -21,5 +21,5 @@ export interface PreferDefaultParametersRule {

*
* @see [prefer-default-parameters](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v41.0.0/docs/rules/prefer-default-parameters.md)
* @see [prefer-default-parameters](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v42.0.0/docs/rules/prefer-default-parameters.md)
*/
'unicorn/prefer-default-parameters': PreferDefaultParametersRuleConfig;
}

@@ -6,3 +6,3 @@ import type { RuleConfig } from '../rule-config';

*
* @see [prefer-dom-node-append](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v41.0.0/docs/rules/prefer-dom-node-append.md)
* @see [prefer-dom-node-append](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v42.0.0/docs/rules/prefer-dom-node-append.md)
*/

@@ -14,3 +14,3 @@ export type PreferDomNodeAppendRuleConfig = RuleConfig<[]>;

*
* @see [prefer-dom-node-append](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v41.0.0/docs/rules/prefer-dom-node-append.md)
* @see [prefer-dom-node-append](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v42.0.0/docs/rules/prefer-dom-node-append.md)
*/

@@ -21,5 +21,5 @@ export interface PreferDomNodeAppendRule {

*
* @see [prefer-dom-node-append](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v41.0.0/docs/rules/prefer-dom-node-append.md)
* @see [prefer-dom-node-append](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v42.0.0/docs/rules/prefer-dom-node-append.md)
*/
'unicorn/prefer-dom-node-append': PreferDomNodeAppendRuleConfig;
}

@@ -6,3 +6,3 @@ import type { RuleConfig } from '../rule-config';

*
* @see [prefer-dom-node-dataset](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v41.0.0/docs/rules/prefer-dom-node-dataset.md)
* @see [prefer-dom-node-dataset](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v42.0.0/docs/rules/prefer-dom-node-dataset.md)
*/

@@ -14,3 +14,3 @@ export type PreferDomNodeDatasetRuleConfig = RuleConfig<[]>;

*
* @see [prefer-dom-node-dataset](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v41.0.0/docs/rules/prefer-dom-node-dataset.md)
* @see [prefer-dom-node-dataset](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v42.0.0/docs/rules/prefer-dom-node-dataset.md)
*/

@@ -21,5 +21,5 @@ export interface PreferDomNodeDatasetRule {

*
* @see [prefer-dom-node-dataset](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v41.0.0/docs/rules/prefer-dom-node-dataset.md)
* @see [prefer-dom-node-dataset](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v42.0.0/docs/rules/prefer-dom-node-dataset.md)
*/
'unicorn/prefer-dom-node-dataset': PreferDomNodeDatasetRuleConfig;
}

@@ -6,3 +6,3 @@ import type { RuleConfig } from '../rule-config';

*
* @see [prefer-dom-node-remove](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v41.0.0/docs/rules/prefer-dom-node-remove.md)
* @see [prefer-dom-node-remove](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v42.0.0/docs/rules/prefer-dom-node-remove.md)
*/

@@ -14,3 +14,3 @@ export type PreferDomNodeRemoveRuleConfig = RuleConfig<[]>;

*
* @see [prefer-dom-node-remove](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v41.0.0/docs/rules/prefer-dom-node-remove.md)
* @see [prefer-dom-node-remove](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v42.0.0/docs/rules/prefer-dom-node-remove.md)
*/

@@ -21,5 +21,5 @@ export interface PreferDomNodeRemoveRule {

*
* @see [prefer-dom-node-remove](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v41.0.0/docs/rules/prefer-dom-node-remove.md)
* @see [prefer-dom-node-remove](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v42.0.0/docs/rules/prefer-dom-node-remove.md)
*/
'unicorn/prefer-dom-node-remove': PreferDomNodeRemoveRuleConfig;
}

@@ -6,3 +6,3 @@ import type { RuleConfig } from '../rule-config';

*
* @see [prefer-dom-node-text-content](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v41.0.0/docs/rules/prefer-dom-node-text-content.md)
* @see [prefer-dom-node-text-content](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v42.0.0/docs/rules/prefer-dom-node-text-content.md)
*/

@@ -14,3 +14,3 @@ export type PreferDomNodeTextContentRuleConfig = RuleConfig<[]>;

*
* @see [prefer-dom-node-text-content](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v41.0.0/docs/rules/prefer-dom-node-text-content.md)
* @see [prefer-dom-node-text-content](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v42.0.0/docs/rules/prefer-dom-node-text-content.md)
*/

@@ -21,5 +21,5 @@ export interface PreferDomNodeTextContentRule {

*
* @see [prefer-dom-node-text-content](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v41.0.0/docs/rules/prefer-dom-node-text-content.md)
* @see [prefer-dom-node-text-content](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v42.0.0/docs/rules/prefer-dom-node-text-content.md)
*/
'unicorn/prefer-dom-node-text-content': PreferDomNodeTextContentRuleConfig;
}

@@ -8,3 +8,3 @@ import type { RuleConfig } from '../rule-config';

*
* @see [prefer-event-key](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v41.0.0/docs/deprecated-rules.md#prefer-event-key)
* @see [prefer-event-key](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v42.0.0/docs/deprecated-rules.md#prefer-event-key)
*/

@@ -18,3 +18,3 @@ export type PreferEventKeyRuleConfig = RuleConfig<[]>;

*
* @see [prefer-event-key](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v41.0.0/docs/deprecated-rules.md#prefer-event-key)
* @see [prefer-event-key](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v42.0.0/docs/deprecated-rules.md#prefer-event-key)
*/

@@ -27,5 +27,5 @@ export interface PreferEventKeyRule {

*
* @see [prefer-event-key](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v41.0.0/docs/deprecated-rules.md#prefer-event-key)
* @see [prefer-event-key](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v42.0.0/docs/deprecated-rules.md#prefer-event-key)
*/
'unicorn/prefer-event-key': PreferEventKeyRuleConfig;
}

@@ -8,3 +8,3 @@ import type { RuleConfig } from '../rule-config';

*
* @see [prefer-exponentiation-operator](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v41.0.0/docs/deprecated-rules.md#prefer-exponentiation-operator)
* @see [prefer-exponentiation-operator](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v42.0.0/docs/deprecated-rules.md#prefer-exponentiation-operator)
*/

@@ -18,3 +18,3 @@ export type PreferExponentiationOperatorRuleConfig = RuleConfig<[]>;

*
* @see [prefer-exponentiation-operator](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v41.0.0/docs/deprecated-rules.md#prefer-exponentiation-operator)
* @see [prefer-exponentiation-operator](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v42.0.0/docs/deprecated-rules.md#prefer-exponentiation-operator)
*/

@@ -27,5 +27,5 @@ export interface PreferExponentiationOperatorRule {

*
* @see [prefer-exponentiation-operator](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v41.0.0/docs/deprecated-rules.md#prefer-exponentiation-operator)
* @see [prefer-exponentiation-operator](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v42.0.0/docs/deprecated-rules.md#prefer-exponentiation-operator)
*/
'unicorn/prefer-exponentiation-operator': PreferExponentiationOperatorRuleConfig;
}

@@ -18,3 +18,3 @@ import type { RuleConfig } from '../rule-config';

*
* @see [prefer-export-from](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v41.0.0/docs/rules/prefer-export-from.md)
* @see [prefer-export-from](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v42.0.0/docs/rules/prefer-export-from.md)
*/

@@ -26,3 +26,3 @@ export type PreferExportFromRuleConfig = RuleConfig<PreferExportFromOptions>;

*
* @see [prefer-export-from](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v41.0.0/docs/rules/prefer-export-from.md)
* @see [prefer-export-from](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v42.0.0/docs/rules/prefer-export-from.md)
*/

@@ -33,5 +33,5 @@ export interface PreferExportFromRule {

*
* @see [prefer-export-from](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v41.0.0/docs/rules/prefer-export-from.md)
* @see [prefer-export-from](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v42.0.0/docs/rules/prefer-export-from.md)
*/
'unicorn/prefer-export-from': PreferExportFromRuleConfig;
}

@@ -8,3 +8,3 @@ import type { RuleConfig } from '../rule-config';

*
* @see [prefer-flat-map](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v41.0.0/docs/deprecated-rules.md#prefer-flat-map)
* @see [prefer-flat-map](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v42.0.0/docs/deprecated-rules.md#prefer-flat-map)
*/

@@ -18,3 +18,3 @@ export type PreferFlatMapRuleConfig = RuleConfig<[]>;

*
* @see [prefer-flat-map](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v41.0.0/docs/deprecated-rules.md#prefer-flat-map)
* @see [prefer-flat-map](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v42.0.0/docs/deprecated-rules.md#prefer-flat-map)
*/

@@ -27,5 +27,5 @@ export interface PreferFlatMapRule {

*
* @see [prefer-flat-map](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v41.0.0/docs/deprecated-rules.md#prefer-flat-map)
* @see [prefer-flat-map](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v42.0.0/docs/deprecated-rules.md#prefer-flat-map)
*/
'unicorn/prefer-flat-map': PreferFlatMapRuleConfig;
}

@@ -6,3 +6,3 @@ import type { RuleConfig } from '../rule-config';

*
* @see [prefer-includes](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v41.0.0/docs/rules/prefer-includes.md)
* @see [prefer-includes](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v42.0.0/docs/rules/prefer-includes.md)
*/

@@ -14,3 +14,3 @@ export type PreferIncludesRuleConfig = RuleConfig<[]>;

*
* @see [prefer-includes](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v41.0.0/docs/rules/prefer-includes.md)
* @see [prefer-includes](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v42.0.0/docs/rules/prefer-includes.md)
*/

@@ -21,5 +21,5 @@ export interface PreferIncludesRule {

*
* @see [prefer-includes](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v41.0.0/docs/rules/prefer-includes.md)
* @see [prefer-includes](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v42.0.0/docs/rules/prefer-includes.md)
*/
'unicorn/prefer-includes': PreferIncludesRuleConfig;
}

@@ -6,3 +6,3 @@ import type { RuleConfig } from '../rule-config';

*
* @see [prefer-json-parse-buffer](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v41.0.0/docs/rules/prefer-json-parse-buffer.md)
* @see [prefer-json-parse-buffer](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v42.0.0/docs/rules/prefer-json-parse-buffer.md)
*/

@@ -14,3 +14,3 @@ export type PreferJsonParseBufferRuleConfig = RuleConfig<[]>;

*
* @see [prefer-json-parse-buffer](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v41.0.0/docs/rules/prefer-json-parse-buffer.md)
* @see [prefer-json-parse-buffer](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v42.0.0/docs/rules/prefer-json-parse-buffer.md)
*/

@@ -21,5 +21,5 @@ export interface PreferJsonParseBufferRule {

*
* @see [prefer-json-parse-buffer](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v41.0.0/docs/rules/prefer-json-parse-buffer.md)
* @see [prefer-json-parse-buffer](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v42.0.0/docs/rules/prefer-json-parse-buffer.md)
*/
'unicorn/prefer-json-parse-buffer': PreferJsonParseBufferRuleConfig;
}

@@ -6,3 +6,3 @@ import type { RuleConfig } from '../rule-config';

*
* @see [prefer-keyboard-event-key](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v41.0.0/docs/rules/prefer-keyboard-event-key.md)
* @see [prefer-keyboard-event-key](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v42.0.0/docs/rules/prefer-keyboard-event-key.md)
*/

@@ -14,3 +14,3 @@ export type PreferKeyboardEventKeyRuleConfig = RuleConfig<[]>;

*
* @see [prefer-keyboard-event-key](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v41.0.0/docs/rules/prefer-keyboard-event-key.md)
* @see [prefer-keyboard-event-key](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v42.0.0/docs/rules/prefer-keyboard-event-key.md)
*/

@@ -21,5 +21,5 @@ export interface PreferKeyboardEventKeyRule {

*
* @see [prefer-keyboard-event-key](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v41.0.0/docs/rules/prefer-keyboard-event-key.md)
* @see [prefer-keyboard-event-key](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v42.0.0/docs/rules/prefer-keyboard-event-key.md)
*/
'unicorn/prefer-keyboard-event-key': PreferKeyboardEventKeyRuleConfig;
}

@@ -6,3 +6,3 @@ import type { RuleConfig } from '../rule-config';

*
* @see [prefer-math-trunc](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v41.0.0/docs/rules/prefer-math-trunc.md)
* @see [prefer-math-trunc](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v42.0.0/docs/rules/prefer-math-trunc.md)
*/

@@ -14,3 +14,3 @@ export type PreferMathTruncRuleConfig = RuleConfig<[]>;

*
* @see [prefer-math-trunc](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v41.0.0/docs/rules/prefer-math-trunc.md)
* @see [prefer-math-trunc](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v42.0.0/docs/rules/prefer-math-trunc.md)
*/

@@ -21,5 +21,5 @@ export interface PreferMathTruncRule {

*
* @see [prefer-math-trunc](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v41.0.0/docs/rules/prefer-math-trunc.md)
* @see [prefer-math-trunc](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v42.0.0/docs/rules/prefer-math-trunc.md)
*/
'unicorn/prefer-math-trunc': PreferMathTruncRuleConfig;
}

@@ -6,3 +6,3 @@ import type { RuleConfig } from '../rule-config';

*
* @see [prefer-modern-dom-apis](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v41.0.0/docs/rules/prefer-modern-dom-apis.md)
* @see [prefer-modern-dom-apis](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v42.0.0/docs/rules/prefer-modern-dom-apis.md)
*/

@@ -14,3 +14,3 @@ export type PreferModernDomApisRuleConfig = RuleConfig<[]>;

*
* @see [prefer-modern-dom-apis](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v41.0.0/docs/rules/prefer-modern-dom-apis.md)
* @see [prefer-modern-dom-apis](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v42.0.0/docs/rules/prefer-modern-dom-apis.md)
*/

@@ -21,5 +21,5 @@ export interface PreferModernDomApisRule {

*
* @see [prefer-modern-dom-apis](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v41.0.0/docs/rules/prefer-modern-dom-apis.md)
* @see [prefer-modern-dom-apis](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v42.0.0/docs/rules/prefer-modern-dom-apis.md)
*/
'unicorn/prefer-modern-dom-apis': PreferModernDomApisRuleConfig;
}

@@ -6,3 +6,3 @@ import type { RuleConfig } from '../rule-config';

*
* @see [prefer-module](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v41.0.0/docs/rules/prefer-module.md)
* @see [prefer-module](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v42.0.0/docs/rules/prefer-module.md)
*/

@@ -14,3 +14,3 @@ export type PreferModuleRuleConfig = RuleConfig<[]>;

*
* @see [prefer-module](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v41.0.0/docs/rules/prefer-module.md)
* @see [prefer-module](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v42.0.0/docs/rules/prefer-module.md)
*/

@@ -21,5 +21,5 @@ export interface PreferModuleRule {

*
* @see [prefer-module](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v41.0.0/docs/rules/prefer-module.md)
* @see [prefer-module](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v42.0.0/docs/rules/prefer-module.md)
*/
'unicorn/prefer-module': PreferModuleRuleConfig;
}

@@ -6,3 +6,3 @@ import type { RuleConfig } from '../rule-config';

*
* @see [prefer-negative-index](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v41.0.0/docs/rules/prefer-negative-index.md)
* @see [prefer-negative-index](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v42.0.0/docs/rules/prefer-negative-index.md)
*/

@@ -14,3 +14,3 @@ export type PreferNegativeIndexRuleConfig = RuleConfig<[]>;

*
* @see [prefer-negative-index](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v41.0.0/docs/rules/prefer-negative-index.md)
* @see [prefer-negative-index](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v42.0.0/docs/rules/prefer-negative-index.md)
*/

@@ -21,5 +21,5 @@ export interface PreferNegativeIndexRule {

*
* @see [prefer-negative-index](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v41.0.0/docs/rules/prefer-negative-index.md)
* @see [prefer-negative-index](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v42.0.0/docs/rules/prefer-negative-index.md)
*/
'unicorn/prefer-negative-index': PreferNegativeIndexRuleConfig;
}

@@ -8,3 +8,3 @@ import type { RuleConfig } from '../rule-config';

*
* @see [prefer-node-append](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v41.0.0/docs/deprecated-rules.md#prefer-node-append)
* @see [prefer-node-append](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v42.0.0/docs/deprecated-rules.md#prefer-node-append)
*/

@@ -18,3 +18,3 @@ export type PreferNodeAppendRuleConfig = RuleConfig<[]>;

*
* @see [prefer-node-append](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v41.0.0/docs/deprecated-rules.md#prefer-node-append)
* @see [prefer-node-append](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v42.0.0/docs/deprecated-rules.md#prefer-node-append)
*/

@@ -27,5 +27,5 @@ export interface PreferNodeAppendRule {

*
* @see [prefer-node-append](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v41.0.0/docs/deprecated-rules.md#prefer-node-append)
* @see [prefer-node-append](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v42.0.0/docs/deprecated-rules.md#prefer-node-append)
*/
'unicorn/prefer-node-append': PreferNodeAppendRuleConfig;
}

@@ -18,3 +18,3 @@ import type { RuleConfig } from '../rule-config';

*
* @see [prefer-node-protocol](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v41.0.0/docs/rules/prefer-node-protocol.md)
* @see [prefer-node-protocol](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v42.0.0/docs/rules/prefer-node-protocol.md)
*/

@@ -27,3 +27,3 @@ export type PreferNodeProtocolRuleConfig =

*
* @see [prefer-node-protocol](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v41.0.0/docs/rules/prefer-node-protocol.md)
* @see [prefer-node-protocol](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v42.0.0/docs/rules/prefer-node-protocol.md)
*/

@@ -34,5 +34,5 @@ export interface PreferNodeProtocolRule {

*
* @see [prefer-node-protocol](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v41.0.0/docs/rules/prefer-node-protocol.md)
* @see [prefer-node-protocol](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v42.0.0/docs/rules/prefer-node-protocol.md)
*/
'unicorn/prefer-node-protocol': PreferNodeProtocolRuleConfig;
}

@@ -8,3 +8,3 @@ import type { RuleConfig } from '../rule-config';

*
* @see [prefer-node-remove](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v41.0.0/docs/deprecated-rules.md#prefer-node-remove)
* @see [prefer-node-remove](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v42.0.0/docs/deprecated-rules.md#prefer-node-remove)
*/

@@ -18,3 +18,3 @@ export type PreferNodeRemoveRuleConfig = RuleConfig<[]>;

*
* @see [prefer-node-remove](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v41.0.0/docs/deprecated-rules.md#prefer-node-remove)
* @see [prefer-node-remove](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v42.0.0/docs/deprecated-rules.md#prefer-node-remove)
*/

@@ -27,5 +27,5 @@ export interface PreferNodeRemoveRule {

*
* @see [prefer-node-remove](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v41.0.0/docs/deprecated-rules.md#prefer-node-remove)
* @see [prefer-node-remove](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v42.0.0/docs/deprecated-rules.md#prefer-node-remove)
*/
'unicorn/prefer-node-remove': PreferNodeRemoveRuleConfig;
}

@@ -18,3 +18,3 @@ import type { RuleConfig } from '../rule-config';

*
* @see [prefer-number-properties](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v41.0.0/docs/rules/prefer-number-properties.md)
* @see [prefer-number-properties](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v42.0.0/docs/rules/prefer-number-properties.md)
*/

@@ -27,3 +27,3 @@ export type PreferNumberPropertiesRuleConfig =

*
* @see [prefer-number-properties](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v41.0.0/docs/rules/prefer-number-properties.md)
* @see [prefer-number-properties](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v42.0.0/docs/rules/prefer-number-properties.md)
*/

@@ -34,5 +34,5 @@ export interface PreferNumberPropertiesRule {

*
* @see [prefer-number-properties](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v41.0.0/docs/rules/prefer-number-properties.md)
* @see [prefer-number-properties](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v42.0.0/docs/rules/prefer-number-properties.md)
*/
'unicorn/prefer-number-properties': PreferNumberPropertiesRuleConfig;
}

@@ -18,3 +18,3 @@ import type { RuleConfig } from '../rule-config';

*
* @see [prefer-object-from-entries](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v41.0.0/docs/rules/prefer-object-from-entries.md)
* @see [prefer-object-from-entries](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v42.0.0/docs/rules/prefer-object-from-entries.md)
*/

@@ -27,3 +27,3 @@ export type PreferObjectFromEntriesRuleConfig =

*
* @see [prefer-object-from-entries](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v41.0.0/docs/rules/prefer-object-from-entries.md)
* @see [prefer-object-from-entries](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v42.0.0/docs/rules/prefer-object-from-entries.md)
*/

@@ -34,5 +34,5 @@ export interface PreferObjectFromEntriesRule {

*
* @see [prefer-object-from-entries](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v41.0.0/docs/rules/prefer-object-from-entries.md)
* @see [prefer-object-from-entries](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v42.0.0/docs/rules/prefer-object-from-entries.md)
*/
'unicorn/prefer-object-from-entries': PreferObjectFromEntriesRuleConfig;
}

@@ -8,3 +8,3 @@ import type { RuleConfig } from '../rule-config';

*
* @see [prefer-object-has-own](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v41.0.0/docs/deprecated-rules.md#prefer-object-has-own)
* @see [prefer-object-has-own](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v42.0.0/docs/deprecated-rules.md#prefer-object-has-own)
*/

@@ -18,3 +18,3 @@ export type PreferObjectHasOwnRuleConfig = RuleConfig<[]>;

*
* @see [prefer-object-has-own](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v41.0.0/docs/deprecated-rules.md#prefer-object-has-own)
* @see [prefer-object-has-own](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v42.0.0/docs/deprecated-rules.md#prefer-object-has-own)
*/

@@ -27,5 +27,5 @@ export interface PreferObjectHasOwnRule {

*
* @see [prefer-object-has-own](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v41.0.0/docs/deprecated-rules.md#prefer-object-has-own)
* @see [prefer-object-has-own](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v42.0.0/docs/deprecated-rules.md#prefer-object-has-own)
*/
'unicorn/prefer-object-has-own': PreferObjectHasOwnRuleConfig;
}

@@ -6,3 +6,3 @@ import type { RuleConfig } from '../rule-config';

*
* @see [prefer-optional-catch-binding](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v41.0.0/docs/rules/prefer-optional-catch-binding.md)
* @see [prefer-optional-catch-binding](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v42.0.0/docs/rules/prefer-optional-catch-binding.md)
*/

@@ -14,3 +14,3 @@ export type PreferOptionalCatchBindingRuleConfig = RuleConfig<[]>;

*
* @see [prefer-optional-catch-binding](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v41.0.0/docs/rules/prefer-optional-catch-binding.md)
* @see [prefer-optional-catch-binding](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v42.0.0/docs/rules/prefer-optional-catch-binding.md)
*/

@@ -21,5 +21,5 @@ export interface PreferOptionalCatchBindingRule {

*
* @see [prefer-optional-catch-binding](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v41.0.0/docs/rules/prefer-optional-catch-binding.md)
* @see [prefer-optional-catch-binding](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v42.0.0/docs/rules/prefer-optional-catch-binding.md)
*/
'unicorn/prefer-optional-catch-binding': PreferOptionalCatchBindingRuleConfig;
}

@@ -6,3 +6,3 @@ import type { RuleConfig } from '../rule-config';

*
* @see [prefer-prototype-methods](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v41.0.0/docs/rules/prefer-prototype-methods.md)
* @see [prefer-prototype-methods](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v42.0.0/docs/rules/prefer-prototype-methods.md)
*/

@@ -14,3 +14,3 @@ export type PreferPrototypeMethodsRuleConfig = RuleConfig<[]>;

*
* @see [prefer-prototype-methods](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v41.0.0/docs/rules/prefer-prototype-methods.md)
* @see [prefer-prototype-methods](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v42.0.0/docs/rules/prefer-prototype-methods.md)
*/

@@ -21,5 +21,5 @@ export interface PreferPrototypeMethodsRule {

*
* @see [prefer-prototype-methods](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v41.0.0/docs/rules/prefer-prototype-methods.md)
* @see [prefer-prototype-methods](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v42.0.0/docs/rules/prefer-prototype-methods.md)
*/
'unicorn/prefer-prototype-methods': PreferPrototypeMethodsRuleConfig;
}

@@ -6,3 +6,3 @@ import type { RuleConfig } from '../rule-config';

*
* @see [prefer-query-selector](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v41.0.0/docs/rules/prefer-query-selector.md)
* @see [prefer-query-selector](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v42.0.0/docs/rules/prefer-query-selector.md)
*/

@@ -14,3 +14,3 @@ export type PreferQuerySelectorRuleConfig = RuleConfig<[]>;

*
* @see [prefer-query-selector](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v41.0.0/docs/rules/prefer-query-selector.md)
* @see [prefer-query-selector](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v42.0.0/docs/rules/prefer-query-selector.md)
*/

@@ -21,5 +21,5 @@ export interface PreferQuerySelectorRule {

*
* @see [prefer-query-selector](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v41.0.0/docs/rules/prefer-query-selector.md)
* @see [prefer-query-selector](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v42.0.0/docs/rules/prefer-query-selector.md)
*/
'unicorn/prefer-query-selector': PreferQuerySelectorRuleConfig;
}

@@ -6,3 +6,3 @@ import type { RuleConfig } from '../rule-config';

*
* @see [prefer-reflect-apply](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v41.0.0/docs/rules/prefer-reflect-apply.md)
* @see [prefer-reflect-apply](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v42.0.0/docs/rules/prefer-reflect-apply.md)
*/

@@ -14,3 +14,3 @@ export type PreferReflectApplyRuleConfig = RuleConfig<[]>;

*
* @see [prefer-reflect-apply](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v41.0.0/docs/rules/prefer-reflect-apply.md)
* @see [prefer-reflect-apply](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v42.0.0/docs/rules/prefer-reflect-apply.md)
*/

@@ -21,5 +21,5 @@ export interface PreferReflectApplyRule {

*
* @see [prefer-reflect-apply](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v41.0.0/docs/rules/prefer-reflect-apply.md)
* @see [prefer-reflect-apply](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v42.0.0/docs/rules/prefer-reflect-apply.md)
*/
'unicorn/prefer-reflect-apply': PreferReflectApplyRuleConfig;
}

@@ -6,3 +6,3 @@ import type { RuleConfig } from '../rule-config';

*
* @see [prefer-regexp-test](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v41.0.0/docs/rules/prefer-regexp-test.md)
* @see [prefer-regexp-test](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v42.0.0/docs/rules/prefer-regexp-test.md)
*/

@@ -14,3 +14,3 @@ export type PreferRegexpTestRuleConfig = RuleConfig<[]>;

*
* @see [prefer-regexp-test](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v41.0.0/docs/rules/prefer-regexp-test.md)
* @see [prefer-regexp-test](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v42.0.0/docs/rules/prefer-regexp-test.md)
*/

@@ -21,5 +21,5 @@ export interface PreferRegexpTestRule {

*
* @see [prefer-regexp-test](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v41.0.0/docs/rules/prefer-regexp-test.md)
* @see [prefer-regexp-test](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v42.0.0/docs/rules/prefer-regexp-test.md)
*/
'unicorn/prefer-regexp-test': PreferRegexpTestRuleConfig;
}

@@ -8,3 +8,3 @@ import type { RuleConfig } from '../rule-config';

*
* @see [prefer-replace-all](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v41.0.0/docs/deprecated-rules.md#prefer-replace-all)
* @see [prefer-replace-all](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v42.0.0/docs/deprecated-rules.md#prefer-replace-all)
*/

@@ -18,3 +18,3 @@ export type PreferReplaceAllRuleConfig = RuleConfig<[]>;

*
* @see [prefer-replace-all](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v41.0.0/docs/deprecated-rules.md#prefer-replace-all)
* @see [prefer-replace-all](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v42.0.0/docs/deprecated-rules.md#prefer-replace-all)
*/

@@ -27,5 +27,5 @@ export interface PreferReplaceAllRule {

*
* @see [prefer-replace-all](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v41.0.0/docs/deprecated-rules.md#prefer-replace-all)
* @see [prefer-replace-all](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v42.0.0/docs/deprecated-rules.md#prefer-replace-all)
*/
'unicorn/prefer-replace-all': PreferReplaceAllRuleConfig;
}

@@ -6,3 +6,3 @@ import type { RuleConfig } from '../rule-config';

*
* @see [prefer-set-has](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v41.0.0/docs/rules/prefer-set-has.md)
* @see [prefer-set-has](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v42.0.0/docs/rules/prefer-set-has.md)
*/

@@ -14,3 +14,3 @@ export type PreferSetHasRuleConfig = RuleConfig<[]>;

*
* @see [prefer-set-has](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v41.0.0/docs/rules/prefer-set-has.md)
* @see [prefer-set-has](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v42.0.0/docs/rules/prefer-set-has.md)
*/

@@ -21,5 +21,5 @@ export interface PreferSetHasRule {

*
* @see [prefer-set-has](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v41.0.0/docs/rules/prefer-set-has.md)
* @see [prefer-set-has](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v42.0.0/docs/rules/prefer-set-has.md)
*/
'unicorn/prefer-set-has': PreferSetHasRuleConfig;
}

@@ -6,3 +6,3 @@ import type { RuleConfig } from '../rule-config';

*
* @see [prefer-spread](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v41.0.0/docs/rules/prefer-spread.md)
* @see [prefer-spread](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v42.0.0/docs/rules/prefer-spread.md)
*/

@@ -14,3 +14,3 @@ export type PreferSpreadRuleConfig = RuleConfig<[]>;

*
* @see [prefer-spread](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v41.0.0/docs/rules/prefer-spread.md)
* @see [prefer-spread](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v42.0.0/docs/rules/prefer-spread.md)
*/

@@ -21,5 +21,5 @@ export interface PreferSpreadRule {

*
* @see [prefer-spread](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v41.0.0/docs/rules/prefer-spread.md)
* @see [prefer-spread](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v42.0.0/docs/rules/prefer-spread.md)
*/
'unicorn/prefer-spread': PreferSpreadRuleConfig;
}

@@ -8,3 +8,3 @@ import type { RuleConfig } from '../rule-config';

*
* @see [prefer-starts-ends-with](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v41.0.0/docs/deprecated-rules.md#prefer-starts-ends-with)
* @see [prefer-starts-ends-with](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v42.0.0/docs/deprecated-rules.md#prefer-starts-ends-with)
*/

@@ -18,3 +18,3 @@ export type PreferStartsEndsWithRuleConfig = RuleConfig<[]>;

*
* @see [prefer-starts-ends-with](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v41.0.0/docs/deprecated-rules.md#prefer-starts-ends-with)
* @see [prefer-starts-ends-with](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v42.0.0/docs/deprecated-rules.md#prefer-starts-ends-with)
*/

@@ -27,5 +27,5 @@ export interface PreferStartsEndsWithRule {

*
* @see [prefer-starts-ends-with](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v41.0.0/docs/deprecated-rules.md#prefer-starts-ends-with)
* @see [prefer-starts-ends-with](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v42.0.0/docs/deprecated-rules.md#prefer-starts-ends-with)
*/
'unicorn/prefer-starts-ends-with': PreferStartsEndsWithRuleConfig;
}

@@ -6,3 +6,3 @@ import type { RuleConfig } from '../rule-config';

*
* @see [prefer-string-replace-all](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v41.0.0/docs/rules/prefer-string-replace-all.md)
* @see [prefer-string-replace-all](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v42.0.0/docs/rules/prefer-string-replace-all.md)
*/

@@ -14,3 +14,3 @@ export type PreferStringReplaceAllRuleConfig = RuleConfig<[]>;

*
* @see [prefer-string-replace-all](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v41.0.0/docs/rules/prefer-string-replace-all.md)
* @see [prefer-string-replace-all](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v42.0.0/docs/rules/prefer-string-replace-all.md)
*/

@@ -21,5 +21,5 @@ export interface PreferStringReplaceAllRule {

*
* @see [prefer-string-replace-all](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v41.0.0/docs/rules/prefer-string-replace-all.md)
* @see [prefer-string-replace-all](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v42.0.0/docs/rules/prefer-string-replace-all.md)
*/
'unicorn/prefer-string-replace-all': PreferStringReplaceAllRuleConfig;
}

@@ -6,3 +6,3 @@ import type { RuleConfig } from '../rule-config';

*
* @see [prefer-string-slice](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v41.0.0/docs/rules/prefer-string-slice.md)
* @see [prefer-string-slice](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v42.0.0/docs/rules/prefer-string-slice.md)
*/

@@ -14,3 +14,3 @@ export type PreferStringSliceRuleConfig = RuleConfig<[]>;

*
* @see [prefer-string-slice](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v41.0.0/docs/rules/prefer-string-slice.md)
* @see [prefer-string-slice](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v42.0.0/docs/rules/prefer-string-slice.md)
*/

@@ -21,5 +21,5 @@ export interface PreferStringSliceRule {

*
* @see [prefer-string-slice](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v41.0.0/docs/rules/prefer-string-slice.md)
* @see [prefer-string-slice](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v42.0.0/docs/rules/prefer-string-slice.md)
*/
'unicorn/prefer-string-slice': PreferStringSliceRuleConfig;
}

@@ -6,3 +6,3 @@ import type { RuleConfig } from '../rule-config';

*
* @see [prefer-string-starts-ends-with](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v41.0.0/docs/rules/prefer-string-starts-ends-with.md)
* @see [prefer-string-starts-ends-with](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v42.0.0/docs/rules/prefer-string-starts-ends-with.md)
*/

@@ -14,3 +14,3 @@ export type PreferStringStartsEndsWithRuleConfig = RuleConfig<[]>;

*
* @see [prefer-string-starts-ends-with](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v41.0.0/docs/rules/prefer-string-starts-ends-with.md)
* @see [prefer-string-starts-ends-with](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v42.0.0/docs/rules/prefer-string-starts-ends-with.md)
*/

@@ -21,5 +21,5 @@ export interface PreferStringStartsEndsWithRule {

*
* @see [prefer-string-starts-ends-with](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v41.0.0/docs/rules/prefer-string-starts-ends-with.md)
* @see [prefer-string-starts-ends-with](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v42.0.0/docs/rules/prefer-string-starts-ends-with.md)
*/
'unicorn/prefer-string-starts-ends-with': PreferStringStartsEndsWithRuleConfig;
}

@@ -6,3 +6,3 @@ import type { RuleConfig } from '../rule-config';

*
* @see [prefer-string-trim-start-end](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v41.0.0/docs/rules/prefer-string-trim-start-end.md)
* @see [prefer-string-trim-start-end](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v42.0.0/docs/rules/prefer-string-trim-start-end.md)
*/

@@ -14,3 +14,3 @@ export type PreferStringTrimStartEndRuleConfig = RuleConfig<[]>;

*
* @see [prefer-string-trim-start-end](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v41.0.0/docs/rules/prefer-string-trim-start-end.md)
* @see [prefer-string-trim-start-end](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v42.0.0/docs/rules/prefer-string-trim-start-end.md)
*/

@@ -21,5 +21,5 @@ export interface PreferStringTrimStartEndRule {

*
* @see [prefer-string-trim-start-end](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v41.0.0/docs/rules/prefer-string-trim-start-end.md)
* @see [prefer-string-trim-start-end](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v42.0.0/docs/rules/prefer-string-trim-start-end.md)
*/
'unicorn/prefer-string-trim-start-end': PreferStringTrimStartEndRuleConfig;
}

@@ -22,3 +22,3 @@ import type { RuleConfig } from '../rule-config';

*
* @see [prefer-switch](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v41.0.0/docs/rules/prefer-switch.md)
* @see [prefer-switch](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v42.0.0/docs/rules/prefer-switch.md)
*/

@@ -30,3 +30,3 @@ export type PreferSwitchRuleConfig = RuleConfig<PreferSwitchOptions>;

*
* @see [prefer-switch](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v41.0.0/docs/rules/prefer-switch.md)
* @see [prefer-switch](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v42.0.0/docs/rules/prefer-switch.md)
*/

@@ -37,5 +37,5 @@ export interface PreferSwitchRule {

*
* @see [prefer-switch](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v41.0.0/docs/rules/prefer-switch.md)
* @see [prefer-switch](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v42.0.0/docs/rules/prefer-switch.md)
*/
'unicorn/prefer-switch': PreferSwitchRuleConfig;
}

@@ -16,3 +16,3 @@ import type { RuleConfig } from '../rule-config';

*
* @see [prefer-ternary](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v41.0.0/docs/rules/prefer-ternary.md)
* @see [prefer-ternary](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v42.0.0/docs/rules/prefer-ternary.md)
*/

@@ -24,3 +24,3 @@ export type PreferTernaryRuleConfig = RuleConfig<PreferTernaryOptions>;

*
* @see [prefer-ternary](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v41.0.0/docs/rules/prefer-ternary.md)
* @see [prefer-ternary](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v42.0.0/docs/rules/prefer-ternary.md)
*/

@@ -31,5 +31,5 @@ export interface PreferTernaryRule {

*
* @see [prefer-ternary](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v41.0.0/docs/rules/prefer-ternary.md)
* @see [prefer-ternary](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v42.0.0/docs/rules/prefer-ternary.md)
*/
'unicorn/prefer-ternary': PreferTernaryRuleConfig;
}

@@ -8,3 +8,3 @@ import type { RuleConfig } from '../rule-config';

*
* @see [prefer-text-content](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v41.0.0/docs/deprecated-rules.md#prefer-text-content)
* @see [prefer-text-content](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v42.0.0/docs/deprecated-rules.md#prefer-text-content)
*/

@@ -18,3 +18,3 @@ export type PreferTextContentRuleConfig = RuleConfig<[]>;

*
* @see [prefer-text-content](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v41.0.0/docs/deprecated-rules.md#prefer-text-content)
* @see [prefer-text-content](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v42.0.0/docs/deprecated-rules.md#prefer-text-content)
*/

@@ -27,5 +27,5 @@ export interface PreferTextContentRule {

*
* @see [prefer-text-content](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v41.0.0/docs/deprecated-rules.md#prefer-text-content)
* @see [prefer-text-content](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v42.0.0/docs/deprecated-rules.md#prefer-text-content)
*/
'unicorn/prefer-text-content': PreferTextContentRuleConfig;
}

@@ -6,3 +6,3 @@ import type { RuleConfig } from '../rule-config';

*
* @see [prefer-top-level-await](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v41.0.0/docs/rules/prefer-top-level-await.md)
* @see [prefer-top-level-await](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v42.0.0/docs/rules/prefer-top-level-await.md)
*/

@@ -14,3 +14,3 @@ export type PreferTopLevelAwaitRuleConfig = RuleConfig<[]>;

*
* @see [prefer-top-level-await](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v41.0.0/docs/rules/prefer-top-level-await.md)
* @see [prefer-top-level-await](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v42.0.0/docs/rules/prefer-top-level-await.md)
*/

@@ -21,5 +21,5 @@ export interface PreferTopLevelAwaitRule {

*
* @see [prefer-top-level-await](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v41.0.0/docs/rules/prefer-top-level-await.md)
* @see [prefer-top-level-await](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v42.0.0/docs/rules/prefer-top-level-await.md)
*/
'unicorn/prefer-top-level-await': PreferTopLevelAwaitRuleConfig;
}

@@ -8,3 +8,3 @@ import type { RuleConfig } from '../rule-config';

*
* @see [prefer-trim-start-end](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v41.0.0/docs/deprecated-rules.md#prefer-trim-start-end)
* @see [prefer-trim-start-end](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v42.0.0/docs/deprecated-rules.md#prefer-trim-start-end)
*/

@@ -18,3 +18,3 @@ export type PreferTrimStartEndRuleConfig = RuleConfig<[]>;

*
* @see [prefer-trim-start-end](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v41.0.0/docs/deprecated-rules.md#prefer-trim-start-end)
* @see [prefer-trim-start-end](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v42.0.0/docs/deprecated-rules.md#prefer-trim-start-end)
*/

@@ -27,5 +27,5 @@ export interface PreferTrimStartEndRule {

*
* @see [prefer-trim-start-end](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v41.0.0/docs/deprecated-rules.md#prefer-trim-start-end)
* @see [prefer-trim-start-end](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v42.0.0/docs/deprecated-rules.md#prefer-trim-start-end)
*/
'unicorn/prefer-trim-start-end': PreferTrimStartEndRuleConfig;
}

@@ -6,3 +6,3 @@ import type { RuleConfig } from '../rule-config';

*
* @see [prefer-type-error](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v41.0.0/docs/rules/prefer-type-error.md)
* @see [prefer-type-error](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v42.0.0/docs/rules/prefer-type-error.md)
*/

@@ -14,3 +14,3 @@ export type PreferTypeErrorRuleConfig = RuleConfig<[]>;

*
* @see [prefer-type-error](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v41.0.0/docs/rules/prefer-type-error.md)
* @see [prefer-type-error](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v42.0.0/docs/rules/prefer-type-error.md)
*/

@@ -21,5 +21,5 @@ export interface PreferTypeErrorRule {

*
* @see [prefer-type-error](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v41.0.0/docs/rules/prefer-type-error.md)
* @see [prefer-type-error](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v42.0.0/docs/rules/prefer-type-error.md)
*/
'unicorn/prefer-type-error': PreferTypeErrorRuleConfig;
}

@@ -40,3 +40,3 @@ import type { RuleConfig } from '../rule-config';

*
* @see [prevent-abbreviations](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v41.0.0/docs/rules/prevent-abbreviations.md)
* @see [prevent-abbreviations](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v42.0.0/docs/rules/prevent-abbreviations.md)
*/

@@ -49,3 +49,3 @@ export type PreventAbbreviationsRuleConfig =

*
* @see [prevent-abbreviations](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v41.0.0/docs/rules/prevent-abbreviations.md)
* @see [prevent-abbreviations](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v42.0.0/docs/rules/prevent-abbreviations.md)
*/

@@ -56,5 +56,5 @@ export interface PreventAbbreviationsRule {

*
* @see [prevent-abbreviations](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v41.0.0/docs/rules/prevent-abbreviations.md)
* @see [prevent-abbreviations](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v42.0.0/docs/rules/prevent-abbreviations.md)
*/
'unicorn/prevent-abbreviations': PreventAbbreviationsRuleConfig;
}

@@ -8,3 +8,3 @@ import type { RuleConfig } from '../rule-config';

*
* @see [regex-shorthand](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v41.0.0/docs/deprecated-rules.md#regex-shorthand)
* @see [regex-shorthand](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v42.0.0/docs/deprecated-rules.md#regex-shorthand)
*/

@@ -18,3 +18,3 @@ export type RegexShorthandRuleConfig = RuleConfig<[]>;

*
* @see [regex-shorthand](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v41.0.0/docs/deprecated-rules.md#regex-shorthand)
* @see [regex-shorthand](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v42.0.0/docs/deprecated-rules.md#regex-shorthand)
*/

@@ -27,5 +27,5 @@ export interface RegexShorthandRule {

*
* @see [regex-shorthand](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v41.0.0/docs/deprecated-rules.md#regex-shorthand)
* @see [regex-shorthand](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v42.0.0/docs/deprecated-rules.md#regex-shorthand)
*/
'unicorn/regex-shorthand': RegexShorthandRuleConfig;
}

@@ -16,3 +16,3 @@ import type { RuleConfig } from '../rule-config';

*
* @see [relative-url-style](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v41.0.0/docs/rules/relative-url-style.md)
* @see [relative-url-style](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v42.0.0/docs/rules/relative-url-style.md)
*/

@@ -24,3 +24,3 @@ export type RelativeUrlStyleRuleConfig = RuleConfig<RelativeUrlStyleOptions>;

*
* @see [relative-url-style](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v41.0.0/docs/rules/relative-url-style.md)
* @see [relative-url-style](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v42.0.0/docs/rules/relative-url-style.md)
*/

@@ -31,5 +31,5 @@ export interface RelativeUrlStyleRule {

*
* @see [relative-url-style](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v41.0.0/docs/rules/relative-url-style.md)
* @see [relative-url-style](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v42.0.0/docs/rules/relative-url-style.md)
*/
'unicorn/relative-url-style': RelativeUrlStyleRuleConfig;
}

@@ -6,3 +6,3 @@ import type { RuleConfig } from '../rule-config';

*
* @see [require-array-join-separator](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v41.0.0/docs/rules/require-array-join-separator.md)
* @see [require-array-join-separator](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v42.0.0/docs/rules/require-array-join-separator.md)
*/

@@ -14,3 +14,3 @@ export type RequireArrayJoinSeparatorRuleConfig = RuleConfig<[]>;

*
* @see [require-array-join-separator](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v41.0.0/docs/rules/require-array-join-separator.md)
* @see [require-array-join-separator](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v42.0.0/docs/rules/require-array-join-separator.md)
*/

@@ -21,5 +21,5 @@ export interface RequireArrayJoinSeparatorRule {

*
* @see [require-array-join-separator](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v41.0.0/docs/rules/require-array-join-separator.md)
* @see [require-array-join-separator](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v42.0.0/docs/rules/require-array-join-separator.md)
*/
'unicorn/require-array-join-separator': RequireArrayJoinSeparatorRuleConfig;
}

@@ -6,3 +6,3 @@ import type { RuleConfig } from '../rule-config';

*
* @see [require-number-to-fixed-digits-argument](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v41.0.0/docs/rules/require-number-to-fixed-digits-argument.md)
* @see [require-number-to-fixed-digits-argument](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v42.0.0/docs/rules/require-number-to-fixed-digits-argument.md)
*/

@@ -14,3 +14,3 @@ export type RequireNumberToFixedDigitsArgumentRuleConfig = RuleConfig<[]>;

*
* @see [require-number-to-fixed-digits-argument](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v41.0.0/docs/rules/require-number-to-fixed-digits-argument.md)
* @see [require-number-to-fixed-digits-argument](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v42.0.0/docs/rules/require-number-to-fixed-digits-argument.md)
*/

@@ -21,5 +21,5 @@ export interface RequireNumberToFixedDigitsArgumentRule {

*
* @see [require-number-to-fixed-digits-argument](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v41.0.0/docs/rules/require-number-to-fixed-digits-argument.md)
* @see [require-number-to-fixed-digits-argument](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v42.0.0/docs/rules/require-number-to-fixed-digits-argument.md)
*/
'unicorn/require-number-to-fixed-digits-argument': RequireNumberToFixedDigitsArgumentRuleConfig;
}

@@ -6,3 +6,3 @@ import type { RuleConfig } from '../rule-config';

*
* @see [require-post-message-target-origin](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v41.0.0/docs/rules/require-post-message-target-origin.md)
* @see [require-post-message-target-origin](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v42.0.0/docs/rules/require-post-message-target-origin.md)
*/

@@ -14,3 +14,3 @@ export type RequirePostMessageTargetOriginRuleConfig = RuleConfig<[]>;

*
* @see [require-post-message-target-origin](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v41.0.0/docs/rules/require-post-message-target-origin.md)
* @see [require-post-message-target-origin](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v42.0.0/docs/rules/require-post-message-target-origin.md)
*/

@@ -21,5 +21,5 @@ export interface RequirePostMessageTargetOriginRule {

*
* @see [require-post-message-target-origin](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v41.0.0/docs/rules/require-post-message-target-origin.md)
* @see [require-post-message-target-origin](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v42.0.0/docs/rules/require-post-message-target-origin.md)
*/
'unicorn/require-post-message-target-origin': RequirePostMessageTargetOriginRuleConfig;
}

@@ -26,3 +26,3 @@ import type { RuleConfig } from '../rule-config';

*
* @see [string-content](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v41.0.0/docs/rules/string-content.md)
* @see [string-content](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v42.0.0/docs/rules/string-content.md)
*/

@@ -34,3 +34,3 @@ export type StringContentRuleConfig = RuleConfig<StringContentOptions>;

*
* @see [string-content](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v41.0.0/docs/rules/string-content.md)
* @see [string-content](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v42.0.0/docs/rules/string-content.md)
*/

@@ -41,5 +41,5 @@ export interface StringContentRule {

*
* @see [string-content](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v41.0.0/docs/rules/string-content.md)
* @see [string-content](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v42.0.0/docs/rules/string-content.md)
*/
'unicorn/string-content': StringContentRuleConfig;
}

@@ -22,3 +22,3 @@ import type { RuleConfig } from '../rule-config';

*
* @see [template-indent](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v41.0.0/docs/rules/template-indent.md)
* @see [template-indent](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v42.0.0/docs/rules/template-indent.md)
*/

@@ -30,3 +30,3 @@ export type TemplateIndentRuleConfig = RuleConfig<TemplateIndentOptions>;

*
* @see [template-indent](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v41.0.0/docs/rules/template-indent.md)
* @see [template-indent](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v42.0.0/docs/rules/template-indent.md)
*/

@@ -37,5 +37,5 @@ export interface TemplateIndentRule {

*
* @see [template-indent](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v41.0.0/docs/rules/template-indent.md)
* @see [template-indent](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v42.0.0/docs/rules/template-indent.md)
*/
'unicorn/template-indent': TemplateIndentRuleConfig;
}

@@ -6,3 +6,3 @@ import type { RuleConfig } from '../rule-config';

*
* @see [text-encoding-identifier-case](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v41.0.0/docs/rules/text-encoding-identifier-case.md)
* @see [text-encoding-identifier-case](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v42.0.0/docs/rules/text-encoding-identifier-case.md)
*/

@@ -14,3 +14,3 @@ export type TextEncodingIdentifierCaseRuleConfig = RuleConfig<[]>;

*
* @see [text-encoding-identifier-case](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v41.0.0/docs/rules/text-encoding-identifier-case.md)
* @see [text-encoding-identifier-case](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v42.0.0/docs/rules/text-encoding-identifier-case.md)
*/

@@ -21,5 +21,5 @@ export interface TextEncodingIdentifierCaseRule {

*
* @see [text-encoding-identifier-case](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v41.0.0/docs/rules/text-encoding-identifier-case.md)
* @see [text-encoding-identifier-case](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v42.0.0/docs/rules/text-encoding-identifier-case.md)
*/
'unicorn/text-encoding-identifier-case': TextEncodingIdentifierCaseRuleConfig;
}

@@ -6,3 +6,3 @@ import type { RuleConfig } from '../rule-config';

*
* @see [throw-new-error](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v41.0.0/docs/rules/throw-new-error.md)
* @see [throw-new-error](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v42.0.0/docs/rules/throw-new-error.md)
*/

@@ -14,3 +14,3 @@ export type ThrowNewErrorRuleConfig = RuleConfig<[]>;

*
* @see [throw-new-error](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v41.0.0/docs/rules/throw-new-error.md)
* @see [throw-new-error](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v42.0.0/docs/rules/throw-new-error.md)
*/

@@ -21,5 +21,5 @@ export interface ThrowNewErrorRule {

*
* @see [throw-new-error](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v41.0.0/docs/rules/throw-new-error.md)
* @see [throw-new-error](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v42.0.0/docs/rules/throw-new-error.md)
*/
'unicorn/throw-new-error': ThrowNewErrorRuleConfig;
}

@@ -106,2 +106,3 @@ import type { ArrayBracketNewlineRule } from './array-bracket-newline';

import type { NoRestrictedCustomEventRule } from './no-restricted-custom-event';
import type { NoRestrictedHtmlElementsRule } from './no-restricted-html-elements';
import type { NoRestrictedPropsRule } from './no-restricted-props';

@@ -152,2 +153,3 @@ import type { NoRestrictedStaticAttributeRule } from './no-restricted-static-attribute';

import type { PreferImportFromVueRule } from './prefer-import-from-vue';
import type { PreferPropTypeBooleanFirstRule } from './prefer-prop-type-boolean-first';
import type { PreferSeparateStaticClassRule } from './prefer-separate-static-class';

@@ -321,2 +323,3 @@ import type { PreferTemplateRule } from './prefer-template';

NoRestrictedCustomEventRule &
NoRestrictedHtmlElementsRule &
NoRestrictedPropsRule &

@@ -367,2 +370,3 @@ NoRestrictedStaticAttributeRule &

PreferImportFromVueRule &
PreferPropTypeBooleanFirstRule &
PreferSeparateStaticClassRule &

@@ -369,0 +373,0 @@ PreferTemplateRule &

{
"compilerOptions": {
"target": "ES2015",
"target": "ES2020",
"moduleResolution": "Node",

@@ -5,0 +5,0 @@ "rootDir": ".",

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc