mirror of
https://git.sr.ht/~lattis/muon
synced 2026-01-26 08:07:51 +00:00
23 lines
618 B
Plaintext
23 lines
618 B
Plaintext
# SPDX-FileCopyrightText: Stone Tickle <lattis@mochiro.moe>
|
|
# SPDX-License-Identifier: GPL-3.0-only
|
|
Diagnostics:
|
|
UnusedIncludes: Strict
|
|
Includes:
|
|
IgnoreHeader:
|
|
# Getting lots of false positives on system headers.
|
|
- ctype\.h
|
|
- stdarg\.h
|
|
- stdint\.h
|
|
- stdio\.h
|
|
- stdlib\.h
|
|
- string\.h
|
|
- time\.h
|
|
# These only define symbols on some platforms
|
|
- platform/assert\.h
|
|
- platform/os\.h
|
|
# Macros only, seems to confuse things
|
|
- buf_size\.h
|
|
ClangTidy:
|
|
CheckOptions:
|
|
bugprone-sizeof-expression.WarnOnSizeOfPointerToAggregate: false
|