We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 45c29c9 commit 6e7540dCopy full SHA for 6e7540d
.github/workflows/scripts.yml
@@ -35,14 +35,10 @@ jobs:
35
python -m venv venv
36
source venv/bin/activate
37
pip install --upgrade pip
38
- pip install flake8
39
- pip install gql websockets simconnect
+ pip install pylint
40
41
- name: Install dependencies
42
- run: |
43
- python -m pip install --upgrade pip
44
- pip install gql websockets simconnect flake8
+ run: pip install gql websockets simconnect
45
46
- - name: Run flake8 on Scripts folder
47
48
- flake8 Scripts --count --select=E9,F63,F7,F82 --show-source
+ - name: Run linter on the Scripts folder
+ run: python -m pylint Scripts --disable=all --enable=F,E
0 commit comments