commitlint.config.js 375 B

12345678910111213141516171819
  1. /**
  2. * Copyright (c) 2025 Bytedance Ltd. and/or its affiliates
  3. * SPDX-License-Identifier: MIT
  4. */
  5. module.exports = {
  6. extends: ['@commitlint/config-conventional'],
  7. rules: {
  8. 'header-max-length': [2, 'always', 150],
  9. 'subject-full-stop': [0, 'never'],
  10. 'subject-case': [
  11. 2,
  12. 'never',
  13. [
  14. 'upper-case', // UPPERCASE
  15. ],
  16. ],
  17. },
  18. };