We have a multi language team and I am trying to roll out a common linter for the team instead of a different structure for each language. I've been testing super-linter with R and I am coming into a few issues for R.
One is that super-linter expects configurations files all live in the folder .github/linters but it seems from here that lintr doesn't check that path meaning that running functions in RStudio don't detect the above file.
I currently have two .lintr files, one in the project root and one in .github/linters that are just a copy of one another to get around this issue.
Wondering if .github/linters could be added to the search list?
We have a multi language team and I am trying to roll out a common linter for the team instead of a different structure for each language. I've been testing super-linter with R and I am coming into a few issues for R.
One is that super-linter expects configurations files all live in the folder
.github/lintersbut it seems from here that lintr doesn't check that path meaning that running functions in RStudio don't detect the above file.I currently have two
.lintrfiles, one in the project root and one in.github/lintersthat are just a copy of one another to get around this issue.Wondering if
.github/linterscould be added to the search list?