summaryrefslogtreecommitdiff
path: root/pylintrc
Commit message (Collapse)AuthorAgeFilesLines
* black autoformattingBob Halley2022-03-151-1/+2
|
* more lgtm lintingBob Halley2022-02-171-0/+3
|
* lintBob Halley2021-12-171-0/+2
|
* Lint passBob Halley2021-05-021-0/+1
|
* pylint lintingBob Halley2020-07-311-17/+6
|
* delintBob Halley2018-02-201-0/+1
|
* Fix more latest pylint warnings.Bob Halley2017-05-301-1/+3
|
* update pylint settings for latest pylintBob Halley2017-05-301-1/+4
|
* Merge pull request #193 from pspacek/pylintBob Halley2016-09-201-2/+2
|\ | | | | Pylint improvements
| * Pylint: use multiple CPU cores to speed-upPetr Spacek2016-07-121-2/+2
| |
* | Merge pull request #197 from bastiak/pylintBob Halley2016-09-181-3/+1
|\ \ | | | | | | Pylint
| * | pylint: enable check for trailing newlinesMartin2016-08-311-1/+0
| | |
| * | Pylint: remove bare exceptsMartin2016-08-311-1/+1
| | | | | | | | | | | | Bare excepts should not be used, because they may hide system exceptions such as KeyboardInterupts or SystemExits.
| * | Pylint: attributes should be defined in initMartin2016-08-311-1/+0
| |/
* | Py3: remove __getslice__ methodMartin Basti2016-08-051-1/+0
|/ | | | | | | | | __getslice__ is deprecated in py2 and it is not used in py3 at all. Instead of this __getitem__ with slice() index should be used. Please note that WireData class must still use __getslice__, because it inherites from 'binary_type' class that has implemented __getslice__ thus this method has to be overriden in WireData class.
* do not complain about trailing newlinesBob Halley2016-07-091-0/+1
|
* Py3: round compatible with py2Martin2016-07-031-1/+0
| | | | | Python 3 and Python 2 uses different rounding strategies in round(). Function round_py2_compat() do rounding in py2 compatible strategy for both py2 and py3
* Py3: do not use iter* methods with dictMartin2016-07-021-1/+0
|
* Pylint: enable superfluous-parens checkMartin Basti2016-06-271-1/+0
|
* Pylint: enable bad-whitespace checkMartin Basti2016-06-271-1/+0
|
* Pylint: enable delslice-method checkMartin Basti2016-06-271-1/+0
| | | | __delslice__ is deprecated since python 2.6 and was removed in py3
* Pylint: enable deprecated-lambda checkMartin Basti2016-06-271-1/+0
|
* Pylint: enable old-division checkMartin Basti2016-06-271-1/+0
|
* Pylint: enable range-builtin-not-iterating checkMartin Basti2016-06-271-1/+0
|
* Pylint: enable undefined-variable checkMartin Basti2016-06-271-1/+0
|
* Pylint: enable multiple py3 *-builtin checksMartin Basti2016-06-271-5/+0
|
* Pylint: enable unneeded-not checkMartin Basti2016-06-271-1/+0
|
* Pylint: enable unnecessary-lambda checkMartin Basti2016-06-271-1/+0
|
* Pylint: enable undefined-loop-variable checkMartin Basti2016-06-271-1/+0
|
* Pylint: enable unused-import checkMartin Basti2016-06-271-1/+0
|
* Pylint: NotImplementedErrorMartin Basti2016-06-271-1/+0
|
* Pylint: enable import-error checkMartin Basti2016-06-271-1/+0
|
* Add pylint checkerMartin Basti2016-06-271-0/+73