aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows/commitlint.config.js
diff options
context:
space:
mode:
authordundargoc <33953936+dundargoc@users.noreply.github.com>2021-09-26 21:13:59 +0200
committerGitHub <noreply@github.com>2021-09-26 12:13:59 -0700
commit3246bf5f4e24025b4a14ed99eeb4a8f954626519 (patch)
treeec5b8789eadf775e0151c0e6d3db7835973ae30b /.github/workflows/commitlint.config.js
parent9686c21237cab5d0035cfed181f5f5cdcc90bd5a (diff)
downloadrneovim-3246bf5f4e24025b4a14ed99eeb4a8f954626519.tar.gz
rneovim-3246bf5f4e24025b4a14ed99eeb4a8f954626519.tar.bz2
rneovim-3246bf5f4e24025b4a14ed99eeb4a8f954626519.zip
ci(lintcommit.lua): replace third-party commitlint #15747
Diffstat (limited to '.github/workflows/commitlint.config.js')
-rw-r--r--.github/workflows/commitlint.config.js35
1 files changed, 0 insertions, 35 deletions
diff --git a/.github/workflows/commitlint.config.js b/.github/workflows/commitlint.config.js
deleted file mode 100644
index 5f10ffc6f4..0000000000
--- a/.github/workflows/commitlint.config.js
+++ /dev/null
@@ -1,35 +0,0 @@
-module.exports = {
- rules: {
- 'body-leading-blank': [1, 'always'],
- 'body-max-line-length': [2, 'always', 100],
- 'footer-leading-blank': [1, 'always'],
- 'footer-max-line-length': [2, 'always', 100],
- 'header-max-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',
- [
- 'build',
- 'chore',
- 'ci',
- 'docs',
- 'feat',
- 'fix',
- 'perf',
- 'refactor',
- 'revert',
- 'test',
- ],
- ],
- },
-};