[RUS] Alexander Todorov: “How to write pylint plugins“ / #PiterPy

How to write pylint plugins Pylint is the most popular Python source code analyzer which looks for programming errors, helps enforce a coding standard and sniffs for some code smells. It is possible to write plugins to add your own checks, for example, coding patterns that you have observed inside your software and are generally a bad practice or rules which you would like to enforce inside of a particular project, e.g. class name and inheritance conventions. This presentation will focus on understanding h
Back to Top