We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
チームで開発においては、ソースコードのコーディングスタイルを統一したほうがいいです。 それをLinterとFormatterに任せば開発効率を向上できると思います。 そこで、具体的なスタイル(仕様)を決めたいと思います。
clang-tidyはルートディレクトリにある.clang-tidyファイルによってソースコードのチェックを行います。
.clang-tidy
https://clang.llvm.org/extra/clang-tidy/
https://github.com/lmntal/slim/blob/modernization/.clang-tidy
clang-formatはルートディレクトリにある.clang-formatファイルによってソースコードをフォマードできます。
.clang-format
https://clang.llvm.org/docs/ClangFormat.html
https://github.com/lmntal/slim/blob/modernization/.clang-format
#312
The text was updated successfully, but these errors were encountered:
Sorry, something went wrong.
No branches or pull requests
Motivation
チームで開発においては、ソースコードのコーディングスタイルを統一したほうがいいです。
それをLinterとFormatterに任せば開発効率を向上できると思います。
そこで、具体的なスタイル(仕様)を決めたいと思います。
Linter
clang-tidyはルートディレクトリにある
.clang-tidy
ファイルによってソースコードのチェックを行います。Reference
https://clang.llvm.org/extra/clang-tidy/
Example
https://github.com/lmntal/slim/blob/modernization/.clang-tidy
Formatter
clang-formatはルートディレクトリにある
.clang-format
ファイルによってソースコードをフォマードできます。Reference
https://clang.llvm.org/docs/ClangFormat.html
Example
https://github.com/lmntal/slim/blob/modernization/.clang-format
関連Issue
#312
The text was updated successfully, but these errors were encountered: