linters: with_defaults(
    line_length_linter = line_length_linter(80),
    cyclocomp_linter = cyclocomp_linter(complexity_limit = 25L),
    camel_case_linter = NULL,
    snake_case_linter = NULL,
    object_name_linter = NULL,
    open_curly_linter = NULL,
    object_usage_linter = NULL,
    object_length_linter = object_length_linter(50))
exclusions: c(list.files(path = "tests/", recursive = T, full.names = T), 
              list.files(path = "inst/", recursive = T, full.names = T))
exclude: "# nolint"
