-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(commitlint): remove rules from configuration
- Loading branch information
Showing
1 changed file
with
0 additions
and
25 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,28 +1,3 @@ | ||
export default { | ||
extends: ['@commitlint/config-conventional'], | ||
rules: { | ||
'scope-empty': [2, 'never'], // 반드시 scope를 포함해야 합니다. | ||
'scope-case': [2, 'always', 'lower-case'], // scope는 항상 소문자여야 합니다. | ||
'scope-enum': [ | ||
2, | ||
'always', | ||
[ | ||
// scope는 이 목록에 있는 값 중 하나여야 합니다. | ||
'*', | ||
'root', | ||
'auth', | ||
'land', | ||
'member', | ||
'time', | ||
'config', | ||
'design-system', | ||
'icon', | ||
'utils', | ||
'ci', | ||
'changeset', | ||
'husky', | ||
'github', | ||
], | ||
], | ||
}, | ||
}; |