1
0
mirror of https://github.com/systemd/systemd synced 2025-10-06 00:13:24 +02:00
Files
systemd/.clang-tidy
Daan De Meyer d06abcf68e meson: Implement duplicate includes check with clang-tidy
Instead of doing this with our own script, let's use clang-tidy
instead.
2025-04-24 12:36:38 +02:00

14 lines
224 B
YAML

# SPDX-License-Identifier: LGPL-2.1-or-later
---
Checks: '
-*,
misc-header-include-cycle,
readability-duplicate-include
'
WarningsAsErrors: '*'
HeaderFileExtensions:
- h
ImplementationFileExtensions:
- c
...