From a940cf4e88760e74343f92c4f14f53aea146a494 Mon Sep 17 00:00:00 2001 From: "Nicholas C. Zakas" Date: Tue, 23 Oct 2018 13:35:52 -0700 Subject: [PATCH] Docs: Mention version for config glob patterns (fixes #8793) --- docs/user-guide/configuring.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/user-guide/configuring.md b/docs/user-guide/configuring.md index 0db1e4dcf40..3bb64faf871 100644 --- a/docs/user-guide/configuring.md +++ b/docs/user-guide/configuring.md @@ -763,7 +763,7 @@ module.exports = { ## Configuration Based on Glob Patterns -Sometimes a more fine-controlled configuration is necessary, for example if the configuration for files within the same directory has to be different. Therefore you can provide configurations under the `overrides` key that will only apply to files that match specific glob patterns, using the same format you would pass on the command line (e.g., `app/**/*.test.js`). +v4.1.0+. Sometimes a more fine-controlled configuration is necessary, for example if the configuration for files within the same directory has to be different. Therefore you can provide configurations under the `overrides` key that will only apply to files that match specific glob patterns, using the same format you would pass on the command line (e.g., `app/**/*.test.js`). ### How it works