Class PyLintParser

  • All Implemented Interfaces:
    ViolationsParser

    public class PyLintParser
    extends java.lang.Object
    implements ViolationsParser
    PyLint.
    pylint --output-format=parseable
    • Constructor Summary

      Constructors 
      Constructor Description
      PyLintParser()  
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      java.util.Set<Violation> parseReportOutput​(java.lang.String string, ViolationsLogger violationsLogger)  
      SEVERITY toSeverity​(java.lang.String severity)
      The different message types are: (C) convention, for programming standard violation (R) refactor, for bad code smell (W) warning, for python specific problems (E) error, for much probably bugs in the code (F) fatal, if an error occured which prevented pylint from doing further processing.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

      • PyLintParser

        public PyLintParser()
    • Method Detail

      • toSeverity

        public SEVERITY toSeverity​(java.lang.String severity)
         The different message types are:
         (C) convention, for programming standard violation
         (R) refactor, for bad code smell
         (W) warning, for python specific problems
         (E) error, for much probably bugs in the code
         (F) fatal, if an error occured which prevented pylint from doing
             further processing.