加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
.pre-commit-config.yaml.sample 1.27 KB
一键复制 编辑 原始数据 按行查看 历史
mvdbeek 提交于 2022-11-22 18:36 . Update .pre-commit-config.yml.sample
repos:
- repo: https://github.com/psf/black
rev: 22.10.0
hooks:
- id: black
- repo: https://github.com/pycqa/flake8
rev: 5.0.4
hooks:
- id: flake8
- repo: https://github.com/pre-commit/mirrors-prettier
rev: v2.6.0 # Use the sha or tag you want to point at
hooks:
- id: prettier
types: [file]
types_or: [javascript, jsx, ts, tsx, vue]
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.3.0 # Use the ref you want to point at
hooks:
- id: trailing-whitespace
- id: check-merge-conflict
- id: check-symlinks
- id: destroyed-symlinks
- id: end-of-file-fixer
- id: name-tests-test
- repo: https://github.com/detailyang/pre-commit-shell
rev: 1.0.5
hooks:
- id: shell-lint
args: [--format=json]
- repo: https://github.com/python-jsonschema/check-jsonschema
rev: 0.19.2
hooks:
- id: check-github-workflows
- repo: local
hooks:
- id: eslint
name: client eslint
language: system
files: ^client/
entry: .ci/eslint_wrapper.sh
types: [file]
types_or: [javascript, jsx, ts, tsx, vue]
# - repo: https://github.com/pycqa/isort
# rev: 5.10.1
# hooks:
# - id: isort
# name: isort (python)
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化