Skip to content

Commit

Permalink
Update concepts-shareable-config.md (#3038)
Browse files Browse the repository at this point in the history
  • Loading branch information
zetaraku committed Feb 20, 2022
1 parent 5150d3d commit 7b4c7a2
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions docs/concepts-shareable-config.md
Expand Up @@ -6,7 +6,7 @@ an object containing `.rules` as default. To use shared configuration you specif
```js
// commitlint.config.js
module.exports = {
extends: ['example'], // => @commitlint-config-example
extends: ['example'], // => commitlint-config-example
};
```

Expand Down Expand Up @@ -42,7 +42,7 @@ You can provide the full path of the package like:
```js
// commitlint.config.js
module.exports = {
extends: ['@commitlint/config-conventional'], // => commitlint/config-conventional
extends: ['@commitlint/config-conventional'], // => @commitlint/config-conventional
};
```

Expand All @@ -53,7 +53,7 @@ Or just the scope/owner of the package.
```js
// commitlint.config.js
module.exports = {
extends: ['@coolcompany'], // => coolcompany/commitlint-config
extends: ['@coolcompany'], // => @coolcompany/commitlint-config
};
```

Expand Down

0 comments on commit 7b4c7a2

Please sign in to comment.