View source: R/object_length_linter.R
object_length_linter | R Documentation |
Check that object names are not too long. The length of an object name is defined as the length in characters, after removing extraneous parts:
object_length_linter(length = 30L)
length |
maximum variable name length allowed. |
generic prefixes for implementations of S3 generics, e.g. as.data.frame.my_class
has length 8.
leading .
, e.g. .my_hidden_function
has length 18.
"%%" for infix operators, e.g. %my_op%
has length 5.
trailing <-
for assignment functions, e.g. my_attr<-
has length 7.
Note that this behavior relies in part on having packages in your Imports available;
see the detailed note in object_name_linter()
for more details.
configurable, default, executing, readability, style
linters for a complete list of linters available in lintr.
# will produce lints
lint(
text = "very_very_long_variable_name <- 1L",
linters = object_length_linter(length = 10L)
)
# okay
lint(
text = "very_very_long_variable_name <- 1L",
linters = object_length_linter(length = 30L)
)
lint(
text = "var <- 1L",
linters = object_length_linter(length = 10L)
)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.