mirror of
https://github.com/javalsai/lidm.git
synced 2025-08-31 18:38:00 +02:00
chore: modularize PAM
also helps with sanitizing the code flow when spawning the child, more code though
This commit is contained in:
30
.clang-tidy
30
.clang-tidy
@@ -16,32 +16,30 @@ Checks: >
|
||||
readability-*,
|
||||
-readability-braces-around-statements,
|
||||
|
||||
WarningsAsErrors: ''
|
||||
HeaderFilterRegex: '.*'
|
||||
WarningsAsErrors: ""
|
||||
HeaderFilterRegex: ".*"
|
||||
FormatStyle: file
|
||||
|
||||
CheckOptions:
|
||||
- key: readability-magic-numbers.IgnoredIntegerValues
|
||||
value: '0;1;2;3;10;255'
|
||||
# - key: readability-magic-numbers.IgnoredValues
|
||||
# value: '0;1;2;3;10;255'
|
||||
- key: readability-identifier-naming.VariableCase
|
||||
value: lower_case
|
||||
- key: readability-identifier-naming.ConstantParameterCase
|
||||
value: UPPER_CASE
|
||||
- key: readability-magic-numbers.IgnoredIntegerValues
|
||||
value: "0;1;2;3;10;255"
|
||||
- key: readability-identifier-naming.VariableCase
|
||||
value: lower_case
|
||||
- key: readability-identifier-naming.ConstantParameterCase
|
||||
value: UPPER_CASE
|
||||
|
||||
- key: readability-identifier-naming.ConstantCase
|
||||
value: "UPPER_CASE"
|
||||
|
||||
- key: readability-identifier-length.VariableThreshold
|
||||
value: '2'
|
||||
value: "2"
|
||||
- key: readability-identifier-length.ParameterThreshold
|
||||
value: '2'
|
||||
value: "2"
|
||||
- key: readability-identifier-length.LocalConstantThreshold
|
||||
value: '2'
|
||||
value: "2"
|
||||
- key: readability-identifier-length.MemberThreshold
|
||||
value: '2'
|
||||
value: "2"
|
||||
- key: readability-identifier-length.MinimumParameterNameLength
|
||||
value: '2'
|
||||
value: "2"
|
||||
- key: readability-identifier-length.MinimumVariableNameLength
|
||||
value: '2'
|
||||
value: "2"
|
||||
|
Reference in New Issue
Block a user