File tree 2 files changed +14
-12
lines changed 2 files changed +14
-12
lines changed Original file line number Diff line number Diff line change @@ -444,7 +444,7 @@ async def limited_parallelism(coroutine: T) -> T:
444
444
445
445
if matches is None :
446
446
# Handle case where there are no regex matches e.g.
447
- # + "?application=AIRFLOW&authenticator=TEST_AUTH&role=TEST_ROLE&warehouse=TEST_WAREHOUSE" # noqa: E501, ERA001
447
+ # + "?application=AIRFLOW&authenticator=TEST_AUTH&role=TEST_ROLE&warehouse=TEST_WAREHOUSE" # noqa: E501
448
448
# Which was found in local testing
449
449
continue
450
450
Original file line number Diff line number Diff line change @@ -11,17 +11,19 @@ line-length = 88
11
11
line-length = 88
12
12
13
13
[tool .ruff .lint ]
14
- select = [" ALL" ]
15
- ignore = [
16
- " C901" , # McCabe complexity
17
- " D" , # pydocstyle
18
- " PL" , # pylint
19
- " S" , # bandit
20
- " G" , # flake8-logging
21
- " T" , # flake8-print
22
- " FBT" , # flake8-boolean-trap
23
- " PERF" , # perflint
24
- " ANN401" ,
14
+ select = [
15
+ " E" , # pycodestyle (error)
16
+ " F" , # pyflakes
17
+ " B" , # bugbear
18
+ " B9" ,
19
+ " C4" , # flake8-comprehensions
20
+ " SIM" , # flake8-simplify
21
+ " I" , # isort
22
+ " UP" , # pyupgrade
23
+ " PIE" , # flake8-pie
24
+ " PGH" , # pygrep-hooks
25
+ " PYI" , # flake8-pyi
26
+ " RUF" ,
25
27
]
26
28
27
29
[tool .ruff .lint .isort ]
You can’t perform that action at this time.
0 commit comments