Skip to content

Commit

Permalink
Docs: Remove mention of minimatch for .eslintignore
Browse files Browse the repository at this point in the history
We no longer use minimatch for ignore patterns, instead using `ignore`
to match `.gitignore` format exactly.
  • Loading branch information
IanVS committed Mar 28, 2016
1 parent 8667431 commit 1cc7f8e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/user-guide/configuring.md
Expand Up @@ -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

Expand Down

0 comments on commit 1cc7f8e

Please sign in to comment.