mo9mo9study / discord.CodeWarehouse

3 stars 2 forks source link

命名規則 #83

Open supleiades opened 3 years ago

supleiades commented 3 years ago

このリポジトリの命名規則

対象 備考
ブランチ {guthub name}/{date:yyyymmdd}/{future/hotfix}-#{ticketID}{freeTitle} future(新規開発)hotfix(既存修正)
パッケージ examplecase 全て小文字の短い名前(アンダースコアは使わない)
モジュール(ファイル) examplecase / example_case 全て小文字の短い名前、スネークケース
クラス名 ExampleCase パスカルケース
関数(メソッド) example_case / example_case 小文字のみ、スネークケース
引数(パラメータ) example_case / example_case 小文字のみ、スネークケース
変数 example_case / example_case 小文字のみ、スネークケース
定数 EXAMPLE_CASE 全て大文字、単語をアンダースコアで区切る、通常、モジュールレベル(関数の外側)に書く

参考