aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows/commitlint.config_patch.js
diff options
context:
space:
mode:
Diffstat (limited to '.github/workflows/commitlint.config_patch.js')
-rw-r--r--.github/workflows/commitlint.config_patch.js27
1 files changed, 0 insertions, 27 deletions
diff --git a/.github/workflows/commitlint.config_patch.js b/.github/workflows/commitlint.config_patch.js
deleted file mode 100644
index ca398c45dc..0000000000
--- a/.github/workflows/commitlint.config_patch.js
+++ /dev/null
@@ -1,27 +0,0 @@
-module.exports = {
- parserPreset: {
- parserOpts: { headerPattern: /^([^\(\):]*)(?:\((.*)\))?!?:(.*)$/ }
- },
- rules: {
- 'body-leading-blank': [1, 'always'],
- 'body-max-line-length': [2, 'always', 100],
- 'footer-max-line-length': [2, 'always', 100],
- 'scope-case': [2, 'always', 'lower-case'],
- 'subject-case': [
- 2,
- 'never',
- ['sentence-case', 'start-case', 'pascal-case', 'upper-case'],
- ],
- 'subject-empty': [2, 'never'],
- 'subject-full-stop': [2, 'never', '.'],
- 'type-case': [2, 'always', 'lower-case'],
- 'type-empty': [2, 'never'],
- 'type-enum': [
- 2,
- 'always',
- [
- 'vim-patch',
- ],
- ],
- },
-};