Skip to content

Commit

Permalink
Merge pull request #20 from arkedge/feature/change-dir-name-rule
Browse files Browse the repository at this point in the history
Change dir name coding rule to snake_case
  • Loading branch information
sksat authored Jul 21, 2023
2 parents b592343 + d11af09 commit 46e09fd
Showing 1 changed file with 4 additions and 1 deletion.
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` (以前の規約)でも構わないものとする.
- ファイル名は小文字の `snake_case`
- C言語では,ファイル名がユニークではないといけない処理系があるため,[後述する各論](#個別箇所についての命名など-m)にて必要な接頭辞をつけること.

Expand Down

0 comments on commit 46e09fd

Please sign in to comment.