バイナリ地名・地物データの読み込み対応&A*アルゴリズムと集落移動描画の改良&フロー曲線と領域線の色入力対応 #212
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: ReviewdogCpplint | |
| on: [pull_request] | |
| jobs: | |
| cpplint: | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: cpplint | |
| uses: reviewdog/action-cpplint@v1 | |
| with: | |
| github_token: ${{ secrets.github_token }} | |
| reporter: github-pr-review | |
| flags: --linelength=150 | |
| filter: "build/include_alpha\ | |
| ,build/include_what_you_use\ | |
| ,build/storage_class\ | |
| ,readability/braces\ | |
| ,readability/casting\ | |
| ,readability/fn_size\ | |
| ,whitespace/braces\ | |
| ,whitespace/comma\ | |
| ,whitespace/comments\ | |
| ,whitespace/end_of_line\ | |
| ,whitespace/ending_newline\ | |
| ,whitespace/indent\ | |
| ,whitespace/newline\ | |
| ,whitespace/operators\ | |
| ,whitespace/parens\ | |
| ,whitespace/line_length\ | |
| " |