1
0
Code Issues Pull Requests Packages Projects Releases Wiki Activity GitHub Gitee

添加 驼峰蛇形命名

This commit is contained in:
zhangbk1
2024-04-02 17:41:10 +08:00
parent 7edf6f8d13
commit 37c2442505
3 changed files with 17 additions and 1 deletions

View File

@@ -69,4 +69,14 @@ export enum SupportCase {
* @since 2024-04-02
*/
LOWER_CASE,
}
/**
* 驼峰蛇形命名
* Camel Snake Case
* e.g. Foo_Bar
*
* @alias: camelSnakeCase / CamelSnakeCase / camel_snake_case / CAMEL_SNAKE_CASE
* @since 2024-04-02
*/
CAMEL_SNAKE_CASE,
}