File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 6262 " Default linters to use.
6363Can be either a string with R expression to be used as
6464is (e.g. `lintr::default_linters' ). Or a list of strings where
65- each element is passed as argument to `lintr::with_defaults ' ."
65+ each element is passed as argument to `lintr::linters_with_defaults ' ."
6666 :group 'ess-R
6767 :type '(choice string (repeat string))
6868 :package-version '(ess . " 18.10" ))
@@ -120,12 +120,12 @@ we couldn't find a .lintr file."
120120
121121(defun ess-r--flymake-linters ()
122122 " If `ess-r-flymake-linters' is a string, use that.
123- Otherwise, construct a string to pass to lintr::with_defaults ."
123+ Otherwise, construct a string to pass to lintr::linters_with_defaults ."
124124 (replace-regexp-in-string
125125 " [\n\t ]+" " "
126126 (if (stringp ess-r-flymake-linters)
127127 ess-r-flymake-linters
128- (concat " lintr::with_defaults ("
128+ (concat " lintr::linters_with_defaults ("
129129 (mapconcat #'identity
130130 ess-r-flymake-linters
131131 " , " )
You can’t perform that action at this time.
0 commit comments