Skip to content
This repository was archived by the owner on Jul 16, 2025. It is now read-only.

Commit d1c8b16

Browse files
Fix lint command (#96)
Because there are git submodules now doing `black .` will change files inside those submodules, which is not what we want. Breaking up the commands to only affect the code we want to lint.
1 parent 8e2a4f2 commit d1c8b16

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

Makefile

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,7 @@ name ?= codecovcli
22

33
lint:
44
pip install black==22.3.0 isort==5.10.1
5-
black .
6-
isort --profile black .
5+
black codecov_cli/**
6+
isort --profile black codecov_cli/**
7+
black tests/**
8+
isort --profile black tests/**

0 commit comments

Comments
 (0)