mirror of
https://github.com/ksyasuda/SubMiner.git
synced 2026-09-22 17:16:19 -07:00
- Add backend selection, setup gating, Anki integration, and external host support - Add launcher flags, documentation, packaging, and focused tests - Open on-demand overlay modals on the first attempt
32 lines
1.6 KiB
YAML
32 lines
1.6 KiB
YAML
Checks: >
|
|
-*,
|
|
bugprone-*,
|
|
modernize-*,
|
|
readability-*,
|
|
performance-*,
|
|
-modernize-use-nodiscard,
|
|
-modernize-use-trailing-return-type,
|
|
-readability-identifier-length,
|
|
-readability-magic-numbers,
|
|
-readability-function-cognitive-complexity,
|
|
-bugprone-easily-swappable-parameters,
|
|
-readability-math-missing-parentheses,
|
|
-modernize-use-using,
|
|
-modernize-deprecated-headers
|
|
|
|
CheckOptions:
|
|
- { key: readability-identifier-naming.NamespaceCase, value: lower_case }
|
|
- { key: readability-identifier-naming.ClassCase, value: CamelCase }
|
|
- { key: readability-identifier-naming.StructCase, value: CamelCase }
|
|
- { key: readability-identifier-naming.TemplateParameterCase, value: CamelCase }
|
|
- { key: readability-identifier-naming.ParameterCase, value: lower_case }
|
|
- { key: readability-identifier-naming.FunctionCase, value: aNy_CasE }
|
|
- { key: readability-identifier-naming.VariableCase, value: lower_case }
|
|
- { key: readability-identifier-naming.ClassMemberCase, value: lower_case }
|
|
- { key: readability-identifier-naming.StructMemberCase, value: lower_case }
|
|
- { key: readability-identifier-naming.ClassMemberSuffix, value: _ }
|
|
- { key: readability-identifier-naming.PrivateMemberSuffix, value: _ }
|
|
- { key: readability-identifier-naming.ProtectedMemberSuffix, value: _ }
|
|
- { key: readability-implicit-bool-conversion.AllowIntegerConditions, value: 1 }
|
|
- { key: readability-implicit-bool-conversion.AllowPointerConditions, value: 1 }
|
|
- { key: readability-function-cognitive-complexity.IgnoreMacros, value: 1 } |