summaryrefslogtreecommitdiff
path: root/pylintrc
Commit message (Collapse)AuthorAgeFilesLines
* style: correct some lint errorsNed Batchelder2022-12-301-0/+1
|
* style: adapt to latest pylint concernsNed Batchelder2022-09-131-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | | Before these changes, these violations happened: ``` lint run-test: commands[6] | python -m pylint --notes= coverage tests doc ci igor.py setup.py __main__.py ************* Module coverage.parser coverage/parser.py:1290 I: Useless suppression of 'too-many-function-args' (useless-suppression) ************* Module ci.download_gha_artifacts ci/download_gha_artifacts.py:18 W: Missing timeout argument for method 'requests.get' can cause your program to hang indefinitely (missing-timeout) ci/download_gha_artifacts.py:54 W: Missing timeout argument for method 'requests.get' can cause your program to hang indefinitely (missing-timeout) ************* Module ci.trigger_build_kits ci/trigger_build_kits.py:21 W: Missing timeout argument for method 'requests.post' can cause your program to hang indefinitely (missing-timeout) ************* Module ci.github_releases ci/github_releases.py:138 E: Too many positional arguments for function call (too-many-function-args) ci/github_releases.py:138 I: Useless suppression of 'no-value-for-parameter' (useless-suppression) ************* Module ci.comment_on_fixes ci/comment_on_fixes.py:30 W: Missing timeout argument for method 'requests.get' can cause your program to hang indefinitely (missing-timeout) ci/comment_on_fixes.py:37 W: Missing timeout argument for method 'requests.get' can cause your program to hang indefinitely (missing-timeout) ci/comment_on_fixes.py:49 W: Missing timeout argument for method 'requests.post' can cause your program to hang indefinitely (missing-timeout) ************* Module ci.parse_relnotes ci/parse_relnotes.py:126 E: Too many positional arguments for function call (too-many-function-args) ci/parse_relnotes.py:126 I: Useless suppression of 'no-value-for-parameter' (useless-suppression) ```
* style: pylint changed to 2.14, adapt.Ned Batchelder2022-06-021-20/+0
|
* style: remove pylint exclusions only needed for 2/3Ned Batchelder2022-02-201-4/+0
|
* refactor(test): use the expected name for initializing tests.Ned Batchelder2021-11-071-2/+2
| | | | | | | | | Originally I used setup_test because something went wrong when I used setUp. I wrote https://github.com/pytest-dev/pytest/issues/8424 about it. There they say to use `-p no:nose` to disable nose interpretation. But now I simply went back to setUp, and all seems well? Not sure what changed, but using the expected name is better.
* build: force 'build' to shut upNed Batchelder2021-10-261-0/+1
|
* test: update pylintNed Batchelder2021-09-291-0/+2
|
* style: fix typos discovered by codespell (#1197)Christian Clauss2021-08-011-7/+7
| | | | | | | | | | | python3 -m pip install codespell codespell --ignore-words-list="ba,cant,datas,hart,linke,ned,nin,overthere,upto" --skip="*.js" * Fix typos discovered by codespell * datas * intgers ==> integers
* build: update to latest pylintgood-metaNed Batchelder2021-05-021-0/+1
|
* test: include the category of pylint messages in the outputNed Batchelder2021-03-111-1/+1
|
* test: reduce use of unittestNed Batchelder2021-03-111-2/+2
|
* build: quiet a silly pylint warningNed Batchelder2021-01-311-0/+1
| | | | | It's good in tests to use `assert "expected" == actual()`, so why is pylint all up in my grill about it?
* chore: update pylint (etc) versionsNed Batchelder2021-01-271-0/+2
| | | | Also: suppress some Python 3-only suggestions until later.
* Upgrade pylintNed Batchelder2019-10-181-0/+5
|
* One per lineNed Batchelder2019-06-191-1/+2
|
* Use pylint 2.xNed Batchelder2019-05-131-0/+3
|
* Check for import orderNed Batchelder2018-09-131-3/+0
|
* Name decorator components to avoid docstring requirementNed Batchelder2018-09-091-2/+2
|
* Spelling in pylint isn't worth the difficulty of installing enchantNed Batchelder2018-06-301-10/+0
|
* Update NOTICE link to GitHub.Ned Batchelder2018-06-241-1/+1
|
* Let greenlet play along with pylintNed Batchelder2017-12-231-0/+2
|
* No need for a pylint scoreNed Batchelder2017-04-301-0/+3
|
* Update to pylint 1.7.1Ned Batchelder2017-04-221-2/+4
|
* Use a metaclass to convert StopEverything to SkipTestNed Batchelder2017-01-251-0/+1
|
* A one_of decorator for checking function arguments.Ned Batchelder2017-01-161-13/+14
|
* Spelling fixesVille Skyttä2016-07-311-3/+3
| | | | | --HG-- branch : spelling
* Update pylint to 1.5.6Ned Batchelder2016-06-251-19/+6
|
* One more pylint setting to modernizeNed Batchelder2016-05-121-2/+1
|
* Modernize pylintrc so we don't find code snippets in it any moreNed Batchelder2016-05-121-15/+10
|
* Clean up small stuffNed Batchelder2016-01-071-1/+5
| | | | | --HG-- branch : ast-branch
* Fix pylint warningsNed Batchelder2015-09-041-0/+1
|
* Cyclic import warnings are not helpfulNed Batchelder2015-08-151-1/+2
|
* Add license mention to the top of all files. #313.Ned Batchelder2015-07-241-0/+3
|
* 80 -> 100 for more breathing room.Ned Batchelder2015-05-281-1/+1
|
* Spelling for the docs alsoNed Batchelder2014-11-291-25/+1
|
* OK, I should really stop fiddling with spell-check...Ned Batchelder2014-11-271-2/+28
|
* Try out pylint spelling. Kinda noisy, but fixed some stuff.Ned Batchelder2014-11-271-0/+9
|
* Cleanups from pull request 42Ned Batchelder2014-11-241-1/+1
|
* Change all pylint message codes to message namesNed Batchelder2014-11-231-1/+1
|
* Upgraded pylint to 1.4, removed useless suppressionsNed Batchelder2014-11-231-3/+7
|
* Pylint upgrade and cleanup.Ned Batchelder2014-09-211-3/+2
|
* Refactor the base test case into separate mixins using addCleanupNed Batchelder2014-09-141-1/+1
|
* Pylint fixed a typo, broke my rc...Ned Batchelder2014-05-021-1/+1
|
* Pylint will read pylintrc files by default. Who knew?Ned Batchelder2013-04-251-0/+326
--HG-- rename : .pylintrc => pylintrc