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'
7
7
export { default as formatter } from './formatter'
8
8
export { default as helpUrl } from './help-url'
9
9
export { 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