We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d19c162 commit dfe3356Copy full SHA for dfe3356
.circleci/config.yml
@@ -425,6 +425,8 @@ jobs:
425
- checkout
426
- pip-install
427
- run: ruff check
428
+ # TODO (cclauss): When ruff supports rule E303 without --preview, remove following line
429
+ - run: ruff check --preview --select=E303
430
mypy:
431
executor: bionic
432
steps:
pyproject.toml
@@ -49,11 +49,8 @@ lint.ignore = [
49
"PLW1510",
50
"PLW2901",
51
]
52
-
53
lint.per-file-ignores."emrun.py" = [ "PLE0704" ]
54
55
lint.mccabe.max-complexity = 48 # Recommended: 10
56
57
lint.pylint.allow-magic-value-types = [
58
"bytes",
59
"float",
0 commit comments