File tree Expand file tree Collapse file tree 3 files changed +5
-2
lines changed Expand file tree Collapse file tree 3 files changed +5
-2
lines changed Original file line number Diff line number Diff line change 1010
1111SECRET = b"reallyreallyreallyreallyverysafe"
1212URL = "http://postgrest"
13- JWT_DURATION = 120
1413TOTAL_TARGETS = 50000 # tuned by hand to reduce result variance
1514
1615
Original file line number Diff line number Diff line change 77, hlint
88, hsie
99, nixpkgs-fmt
10+ , python3Packages
1011, silver-searcher
1112, statix
1213, stylish-haskell
6364 echo "Scanning nix files for unused code..."
6465 ${ deadnix } /bin/deadnix -f
6566
67+ echo "Scanning python files for unused code..."
68+ ${ silver-searcher } /bin/ag -l --vimgrep -g '\.l?py$' . \
69+ | xargs ${ python3Packages . vulture } /bin/vulture --exclude docs/conf.py
70+
6671 echo "Checking consistency of import aliases in Haskell code..."
6772 ${ hsie } check-aliases main src
6873
Original file line number Diff line number Diff line change 33import contextlib
44import dataclasses
55from datetime import datetime
6- from itertools import repeat
76from operator import attrgetter
87import os
98import pathlib
You can’t perform that action at this time.
0 commit comments