1
0
Fork 0

clang-tidy: change MinimumVariableNameLength to 2

This commit is contained in:
tastytea 2022-08-19 01:39:18 +02:00
parent 493b720458
commit b6fbdb9d54
Signed by: tastytea
SSH Key Fingerprint: SHA256:FBkvrOlhq5use1XEttyUGT4bUTDVA1ar9SgIc9P03cM
1 changed files with 4 additions and 2 deletions

View File

@ -1,4 +1,3 @@
# -*- mode: conf; fill-column: 100; -*-
# Written for clang-tidy 14.
---
@ -46,6 +45,9 @@ CheckOptions: # ↓ Clashes with static private member prefix. (static int _va
- { key: readability-identifier-naming.EnumCase, value: lower_case }
- { key: readability-identifier-naming.FunctionCase, value: lower_case }
- { key: readability-identifier-naming.ParameterCase, value: lower_case }
- { 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: