You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It's a fairly big need to have an R tool that automatically fixes excessive line lengths, especially if you have a large code base which is failing the bioconductor checks because you have line lengths > 80. Styler, which is probably the most common automated styling package, doesn't implement an automatic line-length fixer, probably because it hasn't implemented the exact algorithm you have here. Had you considered either:
Implementing a simple algorithm that takes a line length and walks through the files in a project, and runs reshape on any line that exceeds this limit, or
Contributing an integration to styler so that it can use your reformatting as part of their automated styling?
The text was updated successfully, but these errors were encountered:
Just an aside regarding "failing the bioconductor checks because you have line lengths > 80" - this isn't a strict requirement of Bioconductor but just a suggestion/recommendation.
It's a fairly big need to have an R tool that automatically fixes excessive line lengths, especially if you have a large code base which is failing the bioconductor checks because you have line lengths > 80. Styler, which is probably the most common automated styling package, doesn't implement an automatic line-length fixer, probably because it hasn't implemented the exact algorithm you have here. Had you considered either:
reshape
on any line that exceeds this limit, orstyler
so that it can use your reformatting as part of their automated styling?The text was updated successfully, but these errors were encountered: