summaryrefslogtreecommitdiff
path: root/.pylintrc
AgeCommit message (Collapse)Author
2021-12-03pylint: Enable docparams checkerFlorian Bruhin
2021-12-03pylint: Enable else-if-usedpylint-2-12Florian Bruhin
2021-12-03pylint: Enable for_any_all extensionFlorian Bruhin
2021-12-03pylint: Enable more extensions with no new messagesFlorian Bruhin
2021-12-03pylint: Enable code_style extensionFlorian Bruhin
All messages disabled right now, but sounds useful for future updates
2021-12-03pylint: Set py-versionFlorian Bruhin
2021-12-03pylint: Remove open encoding checkerFlorian Bruhin
Now built into pylint
2021-12-03pylint: Remove broad-try-clause entirely for nowFlorian Bruhin
See #6857
2021-12-02pylint: Disable too-many-try-statementsFlorian Bruhin
See #6857
2021-12-02pylint: Disable raise-missing-fromFlorian Bruhin
2021-12-02pylint: Set class-const-naming-styleFlorian Bruhin
See #6857
2021-12-02pylint: Disable logging-fstring-interpolation for nowFlorian Bruhin
See #6197
2021-12-02pylint: Disable consider-using-f-stringFlorian Bruhin
Too big code churn right now, will do this for qutebrowser v3.0.0: See #3020
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