Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
sqlmapproject
GitHub Repository: sqlmapproject/sqlmap
Path: blob/master/extra/shutils/pycodestyle.sh
2992 views
1
#!/bin/bash
2
3
# Copyright (c) 2006-2025 sqlmap developers (https://sqlmap.org)
4
# See the file 'LICENSE' for copying permission
5
6
# Runs pycodestyle on all python files (prerequisite: pip install pycodestyle)
7
find . -wholename "./thirdparty" -prune -o -type f -iname "*.py" -exec pycodestyle --ignore=E501,E302,E305,E722,E402 '{}' \;
8
9