Skip to content

Commit

Permalink
feat: support config .cts extension (#3461)
Browse files Browse the repository at this point in the history
  • Loading branch information
MohamedLamineAllal committed Dec 22, 2022
1 parent a437923 commit 85ad18b
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 0 deletions.
3 changes: 3 additions & 0 deletions @commitlint/load/src/utils/load-config.ts
Expand Up @@ -29,10 +29,13 @@ export async function loadConfig(

// files supported by TypescriptLoader
`.${moduleName}rc.ts`,
`.${moduleName}rc.cts`,
`${moduleName}.config.ts`,
`${moduleName}.config.cts`,
],
loaders: {
'.ts': TypeScriptLoader(),
'.cts': TypeScriptLoader(),
},
});

Expand Down
2 changes: 2 additions & 0 deletions README.md
Expand Up @@ -135,9 +135,11 @@ Check the [husky documentation](https://typicode.github.io/husky/#/?id=manual) o
- `.commitlintrc.js`
- `.commitlintrc.cjs`
- `.commitlintrc.ts`
- `.commitlintrc.cts`
- `commitlint.config.js`
- `commitlint.config.cjs`
- `commitlint.config.ts`
- `commitlint.config.cts`
- `commitlint` field in `package.json`
- Packages: [cli](./@commitlint/cli), [core](./@commitlint/core)
- See [Rules](./docs/reference-rules.md) for a complete list of possible rules
Expand Down

0 comments on commit 85ad18b

Please sign in to comment.