File tree Expand file tree Collapse file tree 4 files changed +73
-529
lines changed Expand file tree Collapse file tree 4 files changed +73
-529
lines changed Original file line number Diff line number Diff line change @@ -40,7 +40,7 @@ generate: $(BIN)/buf $(BIN)/license-header ## Regenerate code and license header
4040.PHONY : format
4141format : install $(BIN ) /license-header # # Format code
4242 $(ADD_LICENSE_HEADER )
43- pipenv run black protovalidate tests
43+ pipenv run ruff format protovalidate tests
4444 pipenv run ruff --fix protovalidate tests
4545
4646.PHONY : test
@@ -53,14 +53,14 @@ conformance: $(BIN)/protovalidate-conformance generate install ## Run conformanc
5353
5454.PHONY : lint
5555lint : install # # Lint code
56- pipenv run black --check --diff protovalidate tests
56+ pipenv run ruff format --check --diff protovalidate tests
5757 pipenv run mypy protovalidate
5858 pipenv run ruff protovalidate tests
5959 pipenv verify
6060
6161.PHONY : lint-fix
6262lint-fix : install # # Lint code
63- pipenv run black protovalidate tests
63+ pipenv run ruff format protovalidate tests
6464 pipenv run ruff --fix protovalidate tests
6565
6666.PHONY : install
Original file line number Diff line number Diff line change @@ -12,7 +12,6 @@ pytest = "*"
1212mypy = " *"
1313ruff = " *"
1414types-protobuf = " *"
15- black = " *"
1615exceptiongroup = " *"
1716tomli = " *"
1817
You can’t perform that action at this time.
0 commit comments