Skip to content

Commit 12a43f1

Browse files
Docs: remove brace expansion from configuring.md (refs #5314)
Remove mention of brace expansion after conversation in #5314
1 parent 5d15e38 commit 12a43f1

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

docs/user-guide/configuring.md

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -643,7 +643,6 @@ Globs are matched using [node-ignore](https://github.com/kaelzhang/node-ignore),
643643
* Paths are relative to `.eslintignore` location or the current working directory. This also influences paths passed via `--ignore-pattern`.
644644
* Ignore patterns behave according to the `.gitignore` [specification](http://git-scm.com/docs/gitignore)
645645
* Lines preceded by `!` are negated patterns that re-include a pattern that was ignored by an earlier pattern.
646-
* Brace expansion can refer to multiple files in a pattern. For example, `file.{js,ts,coffee}` will ignore `file.js`, `file.ts`, and `file.coffee`.
647646

648647
In addition to any patterns in a `.eslintignore` file, ESLint always ignores files in `/node_modules/**` and `/bower_components/**`.
649648

@@ -652,9 +651,6 @@ For example, placing the following `.eslintignore` file in the current working d
652651
```text
653652
# /node_modules and /bower_components ignored by default
654653
655-
# Ignore files compiled from TypeScript and CoffeeScript
656-
**/*.{ts,coffee}.js
657-
658654
# Ignore built files except build/index.js
659655
build/
660656
!build/index.js

0 commit comments

Comments
 (0)