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 {
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/**
Original file line number Diff line number Diff 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/**
You can’t perform that action at this time.
0 commit comments