Skip to content

Commit

Permalink
docs: correct config file name
Browse files Browse the repository at this point in the history
  • Loading branch information
Iiro Jäppinen authored and okonet committed Jul 1, 2019
1 parent 309ff1c commit e862e7e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Expand Up @@ -118,7 +118,7 @@ module.exports = {
### Example: Run `tsc` on changes to TypeScript files, but do not pass any filename arguments

```js
// lintstaged.config.js
// lint-staged.config.js
module.exports = {
'**/*.ts?(x)': () => 'tsc -p tsconfig.json --noEmit'
}
Expand All @@ -136,7 +136,7 @@ module.exports = {
### Example: Use your own globs

```js
// lintstaged.config.js
// lint-staged.config.js
const micromatch = require('micromatch')
module.exports = {
'*': allFiles => {
Expand Down

0 comments on commit e862e7e

Please sign in to comment.