1a390b2815
Scorecard supply-chain security / Scorecard analysis (push) Failing after 1s
/ test (push) Failing after 0s
secretlint / Run secretlint to diff files (push) Failing after 1s
UI-TARS E2E Test / E2E (macos-13) (push) Has been cancelled
UI-TARS E2E Test / E2E (macos-latest) (push) Has been cancelled
UI-TARS E2E Test / E2E (windows-latest) (push) Has been cancelled
CI Test, Typecheck / Test & Typecheck (push) Has been cancelled
30 lines
517 B
JavaScript
30 lines
517 B
JavaScript
/**
|
|
* Copyright (c) 2025 Bytedance, Inc. and its affiliates.
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
module.exports = {
|
|
extends: ['@commitlint/config-conventional'],
|
|
rules: {
|
|
'scope-empty': [0],
|
|
'scope-enum': [2, 'always'],
|
|
'type-enum': [
|
|
2,
|
|
'always',
|
|
[
|
|
'feat',
|
|
'style',
|
|
'fix',
|
|
'docs',
|
|
'chore',
|
|
'refactor',
|
|
'ci',
|
|
'test',
|
|
'revert',
|
|
'perf',
|
|
'release',
|
|
'tweak',
|
|
],
|
|
],
|
|
},
|
|
};
|