File tree Expand file tree Collapse file tree 2 files changed +18
-0
lines changed Expand file tree Collapse file tree 2 files changed +18
-0
lines changed Original file line number Diff line number Diff line change @@ -7,3 +7,4 @@ export { default as defaultIgnores } from './default-ignores'
77export { default as formatter } from './formatter'
88export { default as helpUrl } from './help-url'
99export { default as ignores } from './ignores'
10+ export { default as plugins } from './plugins'
Original file line number Diff line number Diff line change 1+ /**
2+ * @file Config - plugins
3+ * @module commitlint-config/config/plugins
4+ */
5+
6+ import type * as commitlint from '@commitlint/types'
7+
8+ /**
9+ * Plugins to apply.
10+ *
11+ * @see https://commitlint.js.org/#/reference-plugins
12+ *
13+ * @const {(commitlint.Plugin | string)[]} plugins
14+ */
15+ const plugins : ( commitlint . Plugin | string ) [ ] = [ ]
16+
17+ export default plugins
You can’t perform that action at this time.
0 commit comments