https://codeberg.org/interpeer/liberate.git
Revision e067965722489cc8ef33e3c71921e1509975f290 authored by Jens Finkhaeuser on 04 August 2022, 13:09:56 UTC, committed by Jens Finkhaeuser on 04 August 2022, 13:09:56 UTC
1 parent 9b533ed
Raw File
Tip revision: e067965722489cc8ef33e3c71921e1509975f290 authored by Jens Finkhaeuser on 04 August 2022, 13:09:56 UTC
Add command queue for passing commands and results between threads
Tip revision: e067965
.oclint
disable-rules:
- BitwiseOperatorInConditional    # Used a fair bit, and for good reason.
- InvertedLogic                   # Complains about "if (!foo) shortpath;"
- ParameterReassignment           # Complains about out parameters
- UnnecessaryDefaultStatement     # Good to have if enum changes
- TooFewBranchesInSwitchStatement # Prefer switches for enums
rule-configurations:
- key: LONG_LINE                  # Shorten the default
  value: 80
- key: LONG_METHOD                # Lengthen the default
  value: 75
- key: SHORT_VARIABLE_NAME        # Shorten default by one - two is often ok
  value: 2
- key: NCSS_METHOD                # Lengthen the default
  value: 50
back to top