clang-tidy: change MinimumVariableNameLength to 2

This commit is contained in:
tastytea 2022-08-19 01:41:34 +02:00
parent 22a50ef661
commit 531a409124
Signed by: tastytea
SSH Key Fingerprint: SHA256:FBkvrOlhq5use1XEttyUGT4bUTDVA1ar9SgIc9P03cM
1 changed files with 3 additions and 2 deletions

View File

@ -1,4 +1,3 @@
# -*- mode: conf; fill-column: 100; -*-
# Written for clang-tidy 14.
---
@ -48,6 +47,8 @@ CheckOptions: # ↓ Clashes with static private member prefix. (static int _va
- { key: readability-identifier-naming.ParameterCase, value: lower_case }
- { key: readability-function-cognitive-complexity.Threshold, value: 30 }
- { key: readability-identifier-length.MinimumVariableNameLength, value: 2 }
...
# vim: set et tw=100:
# -*- mode: yaml; fill-column: 100; -*-
# vim: set fenc=utf-8 tw=100 et ft=yaml: