Skip to content

Set devel v0.2.1-9000 #33

Set devel v0.2.1-9000

Set devel v0.2.1-9000 #33

Triggered via pull request December 4, 2023 13:38
Status Failure
Total duration 4m 5s
Artifacts

lint.yaml

on: pull_request
Fit to window
Zoom out
Zoom in

Annotations

1 error and 10 warnings
lint
Process completed with exit code 31.
lint: data-raw/prepare_example_netCDFs.R#L20
file=data-raw/prepare_example_netCDFs.R,line=20,col=3,[unreachable_code_linter] Code inside a conditional loop with a deterministically false condition should be removed.
lint: R/functions_netCDF.R#L459
file=R/functions_netCDF.R,line=459,col=7,[unnecessary_nested_if_linter] Don't use nested `if` statements, where a single `if` with the combined conditional expression will do. For example, instead of `if (x) { if (y) { ... }}`, use `if (x && y) { ... }`.
lint: R/functions_netCDF.R#L483
file=R/functions_netCDF.R,line=483,col=5,[keyword_quote_linter] Only quote named arguments to functions if necessary, i.e., if the name is not a valid R symbol (see ?make.names).
lint: R/functions_netCDF.R#L483
file=R/functions_netCDF.R,line=483,col=14,[consecutive_assertion_linter] Unify consecutive calls to stopifnot().
lint: R/functions_netCDF.R#L489
file=R/functions_netCDF.R,line=489,col=5,[keyword_quote_linter] Only quote named arguments to functions if necessary, i.e., if the name is not a valid R symbol (see ?make.names).
lint: R/functions_netCDF.R#L489
file=R/functions_netCDF.R,line=489,col=13,[consecutive_assertion_linter] Unify consecutive calls to stopifnot().
lint: R/functions_netCDF.R#L495
file=R/functions_netCDF.R,line=495,col=5,[keyword_quote_linter] Only quote named arguments to functions if necessary, i.e., if the name is not a valid R symbol (see ?make.names).
lint: R/functions_netCDF.R#L495
file=R/functions_netCDF.R,line=495,col=13,[consecutive_assertion_linter] Unify consecutive calls to stopifnot().
lint: R/functions_netCDF.R#L501
file=R/functions_netCDF.R,line=501,col=5,[keyword_quote_linter] Only quote named arguments to functions if necessary, i.e., if the name is not a valid R symbol (see ?make.names).
lint: R/functions_netCDF.R#L903
file=R/functions_netCDF.R,line=903,col=7,[if_not_else_linter] In a simple if/else statement, prefer `if (A) x else y` to the less-readable `if (!A) y else x`.