Skip to content

Commit eed4f31

Browse files
committed
Use ruff for linting
1 parent 4e40b39 commit eed4f31

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Dockerfile.lint

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@ FROM pypy:3
22

33
WORKDIR /usr/src/app
44

5-
RUN pip install flake8 --no-cache-dir
5+
RUN pip install ruff
66
COPY requirements.txt .
7-
RUN pip install -r requirements.txt --no-cache-dir
7+
RUN pip install -r requirements.txt --no-cache-dir
88
COPY . .
99

10-
CMD ["python", "-m", "flake8", "./src"]
10+
CMD ["ruff", "check", "--extend-select", "I"]

0 commit comments

Comments
 (0)