cpp-common/bt2c/fmt.hpp: use `wise_enum::string_type` in `EnableIfIsWiseEnum` definition
[babeltrace.git] / setup.cfg
index 1d29ccadf04b0031d7954fff124a4c3e55b3b868..02702a12cc992342aa272e0ec0cd19ca95f01630 100644 (file)
--- a/setup.cfg
+++ b/setup.cfg
@@ -2,10 +2,16 @@
 # E501: line too long
 # W503: line break before binary operator (conflicts with black's way of
 #       formatting)
-ignore = E501,W503
+# E203: Whitespace before ':' (conclicts with black's way of formatting)
+ignore = E501,W503,E203
 
-# __init__.py has a bunch of (expectedly) unused imports, so disable that
-# warning for this file.
-per-file-ignores = src/bindings/python/bt2/bt2/__init__.py:F401
+# Disabled warnings for `bt2/__init__.py`:
+#
+# F401:
+#     Has a bunch of (expectedly) unused imports.
+#
+# E402:
+#     Has code to set up the DLL search path before imports.
+per-file-ignores = src/bindings/python/bt2/bt2/__init__.py:F401,E402
 
-exclude = tests/utils/python/tap tests/utils/python/local_typing.py
+exclude = tests/utils/python/normand.py tests/utils/python/tap tests/utils/python/typing/typing.py
This page took 0.032431 seconds and 4 git commands to generate.