Skip to content
This repository was archived by the owner on Mar 7, 2025. It is now read-only.

Commit 3ad56af

Browse files
committed
Move processor
1 parent 4b19bdd commit 3ad56af

File tree

2 files changed

+12
-12
lines changed

2 files changed

+12
-12
lines changed

src/index.d.ts

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,12 @@ export interface EslintConfig {
6060
* @see [Configuring Plugins](https://eslint.org/docs/user-guide/configuring/plugins#configuring-plugins)
6161
*/
6262
plugins?: Plugin[];
63+
/**
64+
* Specifying Processor.
65+
*
66+
* @see [processor](https://eslint.org/docs/user-guide/configuring/plugins#specifying-processor)
67+
*/
68+
processor?: string;
6369
/**
6470
* Rules.
6571
*
@@ -78,12 +84,6 @@ export interface EslintConfig {
7884
* @see [Settings](https://eslint.org/docs/user-guide/configuring/configuration-files#adding-shared-settings)
7985
*/
8086
settings?: Settings;
81-
/**
82-
* Specifying Processor.
83-
*
84-
* @see [processor](https://eslint.org/docs/user-guide/configuring/plugins#specifying-processor)
85-
*/
86-
processor?: string;
8787
}
8888

8989
/**

src/overrides.d.ts

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -19,18 +19,18 @@ export interface Override {
1919
* @see [Extends](https://eslint.org/docs/user-guide/configuring/configuration-files#extending-configuration-files)
2020
*/
2121
extends?: Extends;
22-
/**
23-
* Rules.
24-
*
25-
* @see [Rules](https://eslint.org/docs/user-guide/configuring/rules)
26-
*/
27-
rules?: Rules;
2822
/**
2923
* Specifying Processor.
3024
*
3125
* @see [processor](https://eslint.org/docs/user-guide/configuring/plugins#specifying-processor)
3226
*/
3327
processor?: string;
28+
/**
29+
* Rules.
30+
*
31+
* @see [Rules](https://eslint.org/docs/user-guide/configuring/rules)
32+
*/
33+
rules?: Rules;
3434
}
3535

3636
/**

0 commit comments

Comments
 (0)