linters: with_defaults(
    # lintr defaults: https://github.com/jimhester/lintr#available-linters
    # the following setup changes/removes certain linters
    assignment_linter = NULL, # do not force using <- for assignments
    object_name_linter = NULL,
    cyclocomp_linter = NULL, # do not check function complexity
    commented_code_linter = NULL, # allow code in comments
    line_length_linter = line_length_linter(180)
    )

