We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
defaultIgnores
1 parent 5fad964 commit 43290c7Copy full SHA for 43290c7
src/config/default-ignores.ts
@@ -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
src/config/index.ts
@@ -0,0 +1,6 @@
+ * @file Entry Point - Config
+ * @module commitlint-config/config
+export { default as defaultIgnores } from './default-ignores'
src/index.ts
@@ -3,6 +3,7 @@
* @module commitlint-config
*/
+export * from './config'
export * from './enums'
export * from './interfaces'
export * from './types'
0 commit comments