Skip to content

Commit 9ea6422

Browse files
committed
[ci] Standardize linter line-length arguments
Consistently use the `--<argument_name>=<number>` format for the maximum line length argument across all linters.
1 parent 4fab95e commit 9ea6422

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/linter.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
- name: Run black
2020
run: black --line-length=120 --check --diff .
2121
- name: Run flake8
22-
run: flake8 --max-line-length 150
22+
run: flake8 --max-line-length=150
2323
- name: Run isort
24-
run: isort --check --diff --profile black --line-length 120 .
24+
run: isort --check --diff --profile black --line-length=120 .
2525

0 commit comments

Comments
 (0)