Skip to content

Commit

Permalink
fix(overrides): add missing globals key (#153)
Browse files Browse the repository at this point in the history
  • Loading branch information
Lehoczky committed Nov 9, 2022
1 parent 9b9af0a commit b72e801
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions src/config/overrides.d.ts
Expand Up @@ -27,6 +27,16 @@ export interface Override {
*/
extends?: Extends;

/**
* Specifying Globals.
*
* @see [Globals](https://ESLint.org/docs/user-guide/configuring/language-options#specifying-globals)
*/
globals?: Record<
string,
'readonly' | 'writable' | false | 'readable' | true | 'writeable' | 'off'
>;

/**
* Parser.
*
Expand Down

0 comments on commit b72e801

Please sign in to comment.