Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Change dir name coding rule to snake_case #20

Merged
merged 2 commits into from
Jul 21, 2023
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion Docs/General/coding_rule.md
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,10 @@ git blame を使うことで,該当ファイルの各行がいつ変更され


### ディレクトリ名・ファイル名
- ディレクトリ名は先頭大文字の `CamelCase`
- ディレクトリ名は小文字の `snake_case`
- ただし,外部ライブラリについてはこの限りではない
- 例えば,`hoge-lib` のようなリポジトリ名のライブラリを Git submodule などで配置するときは,元の名前をのままにすることが望ましい
- また,移行期間につき,先頭大文字の `CamelCase` (以前の規約)でも構わないものとする
sksat marked this conversation as resolved.
Show resolved Hide resolved
- ファイル名は小文字の `snake_case`
- C言語では,ファイル名がユニークではないといけない処理系があるため,[後述する各論](#個別箇所についての命名など-m)にて必要な接頭辞をつけること.

Expand Down