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

Commit f513c13

Browse files
authored
Update ESLint config type (#111)
1 parent 5c2f4fd commit f513c13

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

src/index.d.ts

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -87,6 +87,18 @@ export interface EslintConfig {
8787
* @see [Settings](https://eslint.org/docs/user-guide/configuring/configuration-files#adding-shared-settings)
8888
*/
8989
settings?: Settings;
90+
/**
91+
* Disabling Inline Comments.
92+
*
93+
* @see [Disabling Inline Comments](https://eslint.org/docs/user-guide/configuring/rules#disabling-inline-comments)
94+
*/
95+
noInlineConfig?: boolean;
96+
/**
97+
* Report unused `eslint-disable` comments.
98+
*
99+
* @see [Report unused `eslint-disable` comments](https://eslint.org/docs/user-guide/configuring/rules#report-unused-eslint-disable-comments)
100+
*/
101+
reportUnusedDisableDirectives?: boolean;
90102
}
91103

92104
/**

0 commit comments

Comments
 (0)