From 3186a2fe4d638a48672a2fe860ffa618139b3cfd Mon Sep 17 00:00:00 2001 From: Marcus Wyatt Date: Mon, 24 Apr 2023 08:02:51 -0700 Subject: [PATCH] docs: link to `globals` package Co-authored-by: Francesco Trotta --- docs/src/use/configure/configuration-files-new.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/src/use/configure/configuration-files-new.md b/docs/src/use/configure/configuration-files-new.md index 67eacb9e731..ac9a54c374a 100644 --- a/docs/src/use/configure/configuration-files-new.md +++ b/docs/src/use/configure/configuration-files-new.md @@ -330,7 +330,7 @@ For historical reasons, the boolean value `false` and the string value `"readabl ##### Predefined global variables -Apart from the ECMAScript standard built-in globals, which are automatically enabled based on the configured `languageOptions.ecmaVersion`, ESLint doesn't provide predefined sets of global variables. You can use the `globals` package to additionally enable all globals for a specific environment. For example, here is how you can add `console`, amongst other browser globals, into your configuration. +Apart from the ECMAScript standard built-in globals, which are automatically enabled based on the configured `languageOptions.ecmaVersion`, ESLint doesn't provide predefined sets of global variables. You can use the [`globals`](https://www.npmjs.com/package/globals) package to additionally enable all globals for a specific environment. For example, here is how you can add `console`, amongst other browser globals, into your configuration. ```js import globals from "globals";