Add ruff linting - initial configuration

This commit is contained in:
Matthias
2023-02-22 21:06:07 +01:00
parent 2bc9413be1
commit 549a0e1c44
4 changed files with 33 additions and 0 deletions

View File

@@ -98,6 +98,10 @@ jobs:
run: |
isort --check .
- name: Ruff - linting
run: |
ruff check .
- name: Mypy
run: |
mypy freqtrade scripts tests
@@ -194,6 +198,10 @@ jobs:
run: |
isort --check .
- name: Ruff - linting
run: |
ruff check .
- name: Mypy
run: |
mypy freqtrade scripts
@@ -252,6 +260,10 @@ jobs:
run: |
flake8
- name: Ruff - linting
run: |
ruff check .
- name: Mypy
run: |
mypy freqtrade scripts tests