Skip to content

Commit 43290c7

Browse files
committed
feat(config): defaultIgnores
Signed-off-by: Lexus Drumgold <unicornware@flexdevelopment.llc>
1 parent 5fad964 commit 43290c7

File tree

3 files changed

+20
-0
lines changed

3 files changed

+20
-0
lines changed

Diff for: src/config/default-ignores.ts

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
/**
2+
* @file Config - defaultIgnores
3+
* @module commitlint-config/config/defaultIgnores
4+
*/
5+
6+
/**
7+
* Use default ignore rules.
8+
*
9+
* @const {boolean} defaultIgnores
10+
*/
11+
const defaultIgnores: boolean = true
12+
13+
export default defaultIgnores

Diff for: src/config/index.ts

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
/**
2+
* @file Entry Point - Config
3+
* @module commitlint-config/config
4+
*/
5+
6+
export { default as defaultIgnores } from './default-ignores'

Diff for: src/index.ts

+1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
* @module commitlint-config
44
*/
55

6+
export * from './config'
67
export * from './enums'
78
export * from './interfaces'
89
export * from './types'

0 commit comments

Comments
 (0)