1
0
Fork 0

clang-tidy: ignore altera stuff

This commit is contained in:
tastytea 2022-08-16 06:00:44 +02:00
parent ccbbb479ea
commit 7b43d88c88
Signed by: tastytea
SSH Key Fingerprint: SHA256:FBkvrOlhq5use1XEttyUGT4bUTDVA1ar9SgIc9P03cM
1 changed files with 4 additions and 4 deletions

View File

@ -1,5 +1,5 @@
# -*- mode: conf; fill-column: 100; -*-
# Written for clang-tidy 13.
# Written for clang-tidy 14.
---
Checks: '*,
@ -31,9 +31,7 @@ Checks: '*,
-cppcoreguidelines-avoid-non-const-global-variables,
-cert-*-c,
-abseil-string-find-*,
-altera-unroll-loops,
-altera-id-dependent-backward-branch,
-altera-struct-pack-align'
-altera-*'
FormatStyle: file # Use .clang-format.
CheckOptions: # ↓ Clashes with static private member prefix. (static int _var;) ↓
- { key: readability-identifier-naming.VariableCase, value: lower_case }
@ -49,3 +47,5 @@ CheckOptions: # ↓ Clashes with static private member prefix. (static int _va
- { key: readability-identifier-naming.FunctionCase, value: lower_case }
- { key: readability-identifier-naming.ParameterCase, value: lower_case }
...
# vim: set et tw=100: