We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
read_settings()
call
1 parent d25064b commit 07a96a0Copy full SHA for 07a96a0
R/settings.R
@@ -61,7 +61,7 @@
61
#' ```
62
#'
63
#' @param filename Source file to be linted.
64
-read_settings <- function(filename, call = parent.frame()) {
+read_settings <- function(filename) {
65
reset_settings()
66
67
config_file <- find_config(filename)
@@ -71,7 +71,7 @@ read_settings <- function(filename, call = parent.frame()) {
71
default_settings[["encoding"]] <- default_encoding
72
}
73
74
- config <- read_config_file(config_file, call = call)
+ config <- read_config_file(config_file)
75
validate_config_file(config, config_file, default_settings)
76
77
for (setting in names(default_settings)) {
0 commit comments