您最多选择25个主题
主题必须以中文或者字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
32 行
1003 B
32 行
1003 B
repos:
|
|
- repo: https://github.com/pre-commit/pre-commit-hooks
|
|
rev: v4.0.1
|
|
hooks:
|
|
- id: mixed-line-ending
|
|
exclude: >
|
|
(?x)^(
|
|
.*cs.meta|
|
|
.*.css|
|
|
.*.meta|
|
|
.*.mat|
|
|
.*.preset|
|
|
.*.lighting|
|
|
.*.dae
|
|
)$
|
|
args: [--fix=lf]
|
|
|
|
- id: trailing-whitespace
|
|
name: trailing-whitespace-markdown
|
|
types: [markdown]
|
|
- id: check-merge-conflict
|
|
args: [--assume-in-merge]
|
|
- id: check-yaml
|
|
# Won't handle the templating in yamato
|
|
exclude: \.yamato/.*
|
|
|
|
|
|
- repo: https://github.com/dotnet/format
|
|
rev: "7e343070a0355c86f72bdee226b5e19ffcbac931"
|
|
hooks:
|
|
- id: dotnet-format
|
|
args: [--folder, --include]
|