Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Trying to ban f-strings | toonn | 2022-02-05 | 1 | -0/+8 |
| | |||||
* | py2_compat: Fix formatting for PEP8 | toonn | 2021-08-08 | 1 | -3/+3 |
| | |||||
* | py2_compat: Added check for with Popen | toonn | 2021-08-08 | 1 | -1/+19 |
| | | | | | Popen objects became context managers after Python 3.2 so we can't use them as such without a wrapper. | ||||
* | Apply some PEP8 love to the pylint module and tests | toonn | 2020-07-05 | 1 | -19/+15 |
| | |||||
* | Implement python 2 compatibility checks | toonn | 2020-07-05 | 1 | -0/+130 |
We have been stuck on pylint <2 for a long time now because it dropped some of the python 2 lints we rely on. We maintain compatibility with python 2.6+ and 3.5+ and a lack of lints makes especially the former much harder. Incompatibilities had already snuck in in the form of implicit format specs. By implementing a custom checker we can make sure this doesn't happen again. |