Skip to content

Commit 6e7540d

Browse files
committed
Switch to pylint
1 parent 45c29c9 commit 6e7540d

File tree

1 file changed

+4
-8
lines changed

1 file changed

+4
-8
lines changed

.github/workflows/scripts.yml

Lines changed: 4 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -35,14 +35,10 @@ jobs:
3535
python -m venv venv
3636
source venv/bin/activate
3737
pip install --upgrade pip
38-
pip install flake8
39-
pip install gql websockets simconnect
38+
pip install pylint
4039
4140
- name: Install dependencies
42-
run: |
43-
python -m pip install --upgrade pip
44-
pip install gql websockets simconnect flake8
41+
run: pip install gql websockets simconnect
4542

46-
- name: Run flake8 on Scripts folder
47-
run: |
48-
flake8 Scripts --count --select=E9,F63,F7,F82 --show-source
43+
- name: Run linter on the Scripts folder
44+
run: python -m pylint Scripts --disable=all --enable=F,E

0 commit comments

Comments
 (0)