nvim-config

Log | Files | Refs | Submodules | README

pylint.vim (248B)


      1 " Vim pylint integration
      2 if exists("current_compiler")
      3   finish
      4 endif
      5 let current_compiler = "pylint"
      6 
      7 CompilerSet makeprg=pylint\ -sn\ --msg-template=\"{path}:{line}:\ [{msg_id}({symbol}),\ {obj}]\ {msg}\"\ %:p
      8 CompilerSet errorformat=%f:%l:\ %m
      9