25 version = "5.4.0" |
25 version = "5.4.0" |
26 className = "Pep8CheckerPlugin" |
26 className = "Pep8CheckerPlugin" |
27 packageName = "__core__" |
27 packageName = "__core__" |
28 shortDescription = "Show the Python Code Style Checker dialog." |
28 shortDescription = "Show the Python Code Style Checker dialog." |
29 longDescription = """This plugin implements the Python Code Style""" \ |
29 longDescription = """This plugin implements the Python Code Style""" \ |
30 """ Checker dialog. PEP-8 Checker is used to check Python source""" \ |
30 """ Checker dialog. PEP-8 checker is used to check Python source""" \ |
31 """ files for compliance to the code style conventions given in PEP-8.""" |
31 """ files for compliance to the code style conventions given in PEP-8.""" \ |
|
32 """ PEP-257 checker is used to check Python source files for""" \ |
|
33 """ compliance to docstring conventions given in PEP-257.""" |
32 pyqtApi = 2 |
34 pyqtApi = 2 |
33 # End-Of-Header |
35 # End-Of-Header |
34 |
36 |
35 # TODO: modify long description for doc style checking (PEP-257) |
|
36 |
37 |
37 error = "" |
38 error = "" |
38 |
39 |
39 |
40 |
40 class Pep8CheckerPlugin(QObject): |
41 class Pep8CheckerPlugin(QObject): |