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

Commit b72e801

Browse files
authored
fix(overrides): add missing globals key (#153)
1 parent 9b9af0a commit b72e801

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

src/config/overrides.d.ts

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,16 @@ export interface Override {
2727
*/
2828
extends?: Extends;
2929

30+
/**
31+
* Specifying Globals.
32+
*
33+
* @see [Globals](https://ESLint.org/docs/user-guide/configuring/language-options#specifying-globals)
34+
*/
35+
globals?: Record<
36+
string,
37+
'readonly' | 'writable' | false | 'readable' | true | 'writeable' | 'off'
38+
>;
39+
3040
/**
3141
* Parser.
3242
*

0 commit comments

Comments
 (0)