Skip to content

Commit f05345a

Browse files
committed
freeze pylint, ignore requests.get timeout warnings
1 parent f425e86 commit f05345a

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
sudo rm /etc/docker/daemon.json
3131
sudo systemctl restart docker
3232
sudo gpasswd -a $USER docker
33-
pip3 install pylint
33+
pip3 install pylint==2.15.0
3434
- name: Install rustc and clippy nightly
3535
uses: actions-rs/toolchain@v1
3636
with:

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ check-fmt:
9090
cd bin-functions && cargo fmt --check
9191

9292
lint:
93-
pylint scripts --ignore=build --disable=missing-docstring,multiple-imports,global-statement,invalid-name,W0511,W1510,R0801
93+
pylint scripts --ignore=build --disable=missing-docstring,multiple-imports,global-statement,invalid-name,W0511,W1510,R0801,W3101
9494
cd wasm-worker && cargo clippy
9595
cd bin-functions && cargo clippy
9696

0 commit comments

Comments
 (0)