Rの開発環境の1つとしてVS Codeを使用した環境を作ろうとしていたが、1行の文字数は80文字までだとか、コメントの行が連続してはならない(Lines should not be more than 80 characters., Commented code should be removed.)など要らない注意が大量に出て煩わしかったので消す方法を調べた。 あまり検索がヒットしなかったが、それほどありふれた状況ではないのだろうか?

lintrというRのライブラリがlinterらしく、lintrの設定ファイル.lintrを加えることでカスタマイズできた(lintrのrepositoryの説明)。 現在.のlintr

linters: with_defaults(
  line_length_linter(240),
  commented_code_linter = NULL
  )