This repository was archived by the owner on Mar 7, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +12
-12
lines changed Expand file tree Collapse file tree 2 files changed +12
-12
lines changed Original file line number Diff line number Diff line change @@ -60,6 +60,12 @@ export interface EslintConfig {
60
60
* @see [Configuring Plugins](https://eslint.org/docs/user-guide/configuring/plugins#configuring-plugins)
61
61
*/
62
62
plugins ?: Plugin [ ] ;
63
+ /**
64
+ * Specifying Processor.
65
+ *
66
+ * @see [processor](https://eslint.org/docs/user-guide/configuring/plugins#specifying-processor)
67
+ */
68
+ processor ?: string ;
63
69
/**
64
70
* Rules.
65
71
*
@@ -78,12 +84,6 @@ export interface EslintConfig {
78
84
* @see [Settings](https://eslint.org/docs/user-guide/configuring/configuration-files#adding-shared-settings)
79
85
*/
80
86
settings ?: Settings ;
81
- /**
82
- * Specifying Processor.
83
- *
84
- * @see [processor](https://eslint.org/docs/user-guide/configuring/plugins#specifying-processor)
85
- */
86
- processor ?: string ;
87
87
}
88
88
89
89
/**
Original file line number Diff line number Diff line change @@ -19,18 +19,18 @@ export interface Override {
19
19
* @see [Extends](https://eslint.org/docs/user-guide/configuring/configuration-files#extending-configuration-files)
20
20
*/
21
21
extends ?: Extends ;
22
- /**
23
- * Rules.
24
- *
25
- * @see [Rules](https://eslint.org/docs/user-guide/configuring/rules)
26
- */
27
- rules ?: Rules ;
28
22
/**
29
23
* Specifying Processor.
30
24
*
31
25
* @see [processor](https://eslint.org/docs/user-guide/configuring/plugins#specifying-processor)
32
26
*/
33
27
processor ?: string ;
28
+ /**
29
+ * Rules.
30
+ *
31
+ * @see [Rules](https://eslint.org/docs/user-guide/configuring/rules)
32
+ */
33
+ rules ?: Rules ;
34
34
}
35
35
36
36
/**
You can’t perform that action at this time.
0 commit comments