summaryrefslogtreecommitdiff
path: root/.pylintrc
AgeCommit message (Collapse)Author
2021-08-26Blanket PyQt5 -> PyQt6Florian Bruhin
2021-02-11Fix lintFlorian Bruhin
2021-02-10pylint: Allow A-Z for attributesFlorian Bruhin
To use ClassVar with dataclass
2020-12-19Merge branch 'master' into more-sophisticated-adblockÁrni Dagur
2020-12-19Fix more lint issues related to content blockingÁrni Dagur
2020-11-25scripts: Fix lintFlorian Bruhin
2020-08-03pylint: Bump up maximum line length to 88Florian Bruhin
For compatibility with black if people want to start using it for new code. See #4770, #1455
2020-04-15Fix lintFlorian Bruhin
2020-01-13Delete qute_pylint.settraceFlorian Bruhin
This is handled by flake8-debugger
2019-10-01pylint: Remove known-* workaroundFlorian Bruhin
2019-10-01pylint: Add trailing commas to configFlorian Bruhin
2019-10-01pylint: Enable overlapping_exceptionsFlorian Bruhin
It was moved to a pylint extension because it makes no sense for polyglot Python 2/3 code, but we're not doing that.
2019-10-01pylint: Enable broad_try_clauseFlorian Bruhin
2019-10-01pylint: Enable emptystring extensionFlorian Bruhin
2019-10-01pylint: Skip bad-builtin extensionFlorian Bruhin
2019-10-01pylint: Ignore DummyBox errorsFlorian Bruhin
pylint complains because msgbox.msgbox() can return DummyBox, but we know that's not the case in tests/unit/misc/test_msgbox.py.
2019-10-01pylint: Disable no-else-continueFlorian Bruhin
2019-10-01pylint: Ignore import-outside-toplevelFlorian Bruhin
There are good reasons to do those.
2019-04-02Disable bad-builtin pylint ruleJay Kamat
2018-09-27Fix lintFlorian Bruhin
2017-12-15pylint: More config adjustmentsFlorian Bruhin
2017-12-15pylint: Re-enable ungrouped-importsFlorian Bruhin
2017-12-15Reorder pylint ignoresFlorian Bruhin
2017-12-15pylint: Re-enable bad-continuationFlorian Bruhin
And lots and lots of whitespace changes.
2017-12-15Reorder pylint disablesFlorian Bruhin
2017-12-15Remove old pylint disablesFlorian Bruhin
2017-12-15pylint: Disable logging-not-lazyFlorian Bruhin
We log to RAM anyways
2017-10-31pylint: Turn off some more too-many-* stuff globallyFlorian Bruhin
Humans are just better at judging what's okay here than a machine.
2017-10-27Disable pylint's too-many-boolean-expressions.Ryan Roden-Corrent
2017-10-11Fix lintFlorian Bruhin
See https://github.com/PyCQA/pylint/issues/1698
2017-09-19Start using attrsFlorian Bruhin
Closes #1073
2017-09-14Initial config.py supportFlorian Bruhin
See #2795
2017-05-17Hopefully fix pylint on AppVeyor...Florian Bruhin
2017-05-17pylint: Add more stuff to known-standard-libraryFlorian Bruhin
2017-05-17Reorganize pylint configFlorian Bruhin
This removes various stuff we don't need anymoe, and also re-enables and fixes the import order check.
2017-05-17Install PyQt from PyPI for pylintFlorian Bruhin
This means we can be sure to have QtWebEngine available and won't have QtWebKit.
2017-03-23pylint: Ignore no-else-returnFlorian Bruhin
This will be added in the next pylint release, and it seems we can already add it without getting an error.
2017-03-08Refactor qtutils.version_check APIFlorian Bruhin
Fixes #2423
2017-03-08pylint: Disable too-many-boolean-expressionsFlorian Bruhin
2016-11-04Fix lintFlorian Bruhin
2016-08-23pylint: Use ignored-modules for pytestFlorian Bruhin
See https://github.com/PyCQA/astroid/pull/357
2016-07-20pylint: Set persistent=nFlorian Bruhin
See #1637
2016-07-11pylint: Enable docstyle extensionFlorian Bruhin
2016-07-11pylint: Reenable bad-builtin extensionFlorian Bruhin
2016-07-11pylint: ignore wrong-import-position project-wideFlorian Bruhin
While it's more accurate with isort now, we get a wrong-import-position for everything in scripts/ where we have to do the sys.path magic first.
2016-07-08pylint: Disable duplicate-code globallyFlorian Bruhin
We can't disable it more fine-grained: https://github.com/PyCQA/pylint/issues/214 I think for the shown duplicate (histroy in webkittab/webenginetab) it makes no sense to refactor things as a Mixin...
2016-07-07Fix pylint without QtWebEngine availableFlorian Bruhin
2016-07-07Fix some lintFlorian Bruhin
2016-06-13Split browser into browser/browser.webkitFlorian Bruhin
2016-05-26pylint: Disable too-many-return-statementsFlorian Bruhin