加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
lint.sh 427 Bytes
一键复制 编辑 原始数据 按行查看 历史
Ozzy 提交于 2021-02-09 12:23 . add: lint tools
#!/bin/sh -e
export PREFIX=""
if [ -d 'venv' ] ; then
export PREFIX="venv/bin/"
fi
set -x
pip install -r requirements/requirements-lint.txt
FILES="tutorial setup.py"
${PREFIX}autoflake --in-place --recursive --remove-all-unused-imports --remove-unused-variables ${FILES}
${PREFIX}black --exclude=".pyi$" ${FILES}
${PREFIX}isort --multi-line=3 --trailing-comma --force-grid-wrap=0 --combine-as --line-width 88 ${FILES}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化