Skip to content

Commit

Permalink
Add leading dots to excludes examples
Browse files Browse the repository at this point in the history
For now at least, the dot is required for the excludes pattern to work correctly.
  • Loading branch information
trotzig authored Jul 3, 2018
1 parent abee7fa commit 6e88abf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ example below.
```javascript
module.exports = {
excludes: [
'react-components/**/test/**'
'./react-components/**/test/**'
]
// continue with the rest of your settings...
}
Expand Down Expand Up @@ -148,7 +148,7 @@ want to include for importing.

```javascript
excludes: [
'react-components/**/test/**',
'./react-components/**/test/**',
]
```

Expand Down

0 comments on commit 6e88abf

Please sign in to comment.