summaryrefslogtreecommitdiff
path: root/setup.cfg
diff options
context:
space:
mode:
authordependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>2023-01-16 16:25:18 +0100
committerGitHub <noreply@github.com>2023-01-16 16:25:18 +0100
commiteae0eaff11239db4dc89d570d120ff0a6cbe1e61 (patch)
tree912e7d44b5d31d3f1330b81ca99e661a37382015 /setup.cfg
parent413238d03396a2a1140bccc8d5916941d360c95f (diff)
downloadpylint-git-eae0eaff11239db4dc89d570d120ff0a6cbe1e61.tar.gz
Bump flake8-bugbear from 22.12.6 to 23.1.14 (#8062)
* Bump flake8-bugbear from 22.12.6 to 23.1.14 Bumps [flake8-bugbear](https://github.com/PyCQA/flake8-bugbear) from 22.12.6 to 23.1.14. - [Release notes](https://github.com/PyCQA/flake8-bugbear/releases) - [Commits](https://github.com/PyCQA/flake8-bugbear/compare/22.12.6...23.1.14) --- updated-dependencies: - dependency-name: flake8-bugbear dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: Pierre Sassoulas <pierre.sassoulas@gmail.com>
Diffstat (limited to 'setup.cfg')
-rw-r--r--setup.cfg4
1 files changed, 3 insertions, 1 deletions
diff --git a/setup.cfg b/setup.cfg
index cf7545717..b6ebd2b77 100644
--- a/setup.cfg
+++ b/setup.cfg
@@ -13,10 +13,12 @@ license_files =
# E203: Whitespace before ':'
# W503: Line break occurred before a binary operator
# E501: Line too long
+# B028: consider using the `!r` conversion flag
ignore =
E203,
W503,
- E501
+ E501,
+ B028,
max-line-length=88
max-complexity=39
# Required for flake8-typing-imports (v1.12.0)