Keyboard shortcuts

Press or to navigate between chapters

Press S or / to search in the book

Press ? to show this help

Press Esc to hide this help

C/C++

Note

This chapter is mainly documentation for myself as a single source of truth for configurations.

If you are looking for setup documentation for C/C++ projects, see here

Template: Taskfile.yml

version: '3'

includes:
  ccpp:
    taskfile: ../mono-dev/task/ccpp.yaml
    internal: true
    optional: true

tasks:
  check:
    cmds:
      - task: ccpp:clang-tidy
      - task: ccpp:fmt-check

  fix:
    cmds:
      - task: ccpp:fmt-fix