Преглед на файлове

refactor: change order of rules

rules are now in order of a commit message and separated into sections.
MikeWallaceDev преди 3 години
родител
ревизия
87cc542275
променени са 1 файла, в които са добавени 12 реда и са изтрити 8 реда
  1. 12 8
      commitlint.config.js

+ 12 - 8
commitlint.config.js

@@ -1,20 +1,24 @@
 // module.exports = {extends: ['@commitlint/config-conventional']}
 module.exports = {
     rules: {
-        'type-enum': [2, 'always', ['chore', 'ci', 'docs', 'feat', 'fix', 'refactor', 'style', 'test']],
-        '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],
+
+        'type-enum': [2, 'always', ['chore', 'ci', 'docs', 'feat', 'fix', 'refactor', 'style', 'test']],
+        'type-empty': [2, 'never'],
+        'type-case': [2, 'always', 'lower-case'],
+
         'subject-case': [
             2,
             'never',
             ['sentence-case', 'start-case', 'pascal-case', 'upper-case'],
         ],
         'subject-empty': [2, 'never'],
-        'type-empty': [2, 'never'],
-        'type-case': [2, 'always', 'lower-case'],
-        'body-case': [2, 'never', []]
+
+        'body-leading-blank': [1, 'always'],
+        'body-max-line-length': [2, 'always', 100],
+        'body-case': [2, 'never', []],
+
+        'footer-leading-blank': [1, 'always'],
+        'footer-max-line-length': [2, 'always', 100]
     },
 };