From 1cc7f8e99221be5fcd72ce092a57e3a39450a617 Mon Sep 17 00:00:00 2001 From: Ian VanSchooten Date: Sun, 27 Mar 2016 21:25:03 -0400 Subject: [PATCH] Docs: Remove mention of minimatch for .eslintignore We no longer use minimatch for ignore patterns, instead using `ignore` to match `.gitignore` format exactly. --- 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 c00ee4c065d..3c844879d18 100644 --- a/docs/user-guide/configuring.md +++ b/docs/user-guide/configuring.md @@ -666,7 +666,7 @@ You can also use your `.gitignore` file: eslint --ignore-path .gitignore file.js -Any file that follows the standard ignore file format can be used. Keep in mind that specifying `--ignore-path` means that any existing `.eslintignore` file will not be used. Note that globbing rules in .eslintignore are more strict than in .gitignore. See all supported patterns in [minimatch docs](https://github.com/isaacs/minimatch) +Any file that follows the standard ignore file format can be used. Keep in mind that specifying `--ignore-path` means that any existing `.eslintignore` file will not be used. Note that globbing rules in `.eslintignore` follow those of `.gitignore`. ### Ignored File Warnings