-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathlefthook.yml
51 lines (48 loc) · 1.13 KB
/
lefthook.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
# Lefthook Docs
# https://github.com/evilmartians/lefthook/blob/master/docs/full_guide.md
pre-commit:
piped: true
skip:
- merge
- rebase
commands:
1_format_client:
glob: '*.dart'
run: flutter format {staged_files}
2_stage_files:
files: git diff --name-only
run: git add client
# pre-push:
# piped: true
# skip:
# - merge
# - rebase
# commands:
# 1_analyze_client:
# glob: 'client/*.dart'
# run: dart fix client --apply && git add client
# 2_add_fix_commit:
# files: git diff --staged --name-only
# run: LEFTHOOK=0 git commit -m "dart fix"
# Example
# pre-commit:
# parallel: true
# commands:
# eslint:
# glob: "*.{js,ts}"
# run: yarn eslint {staged_files}
# rubocop:
# tags: backend style
# glob: "*.rb"
# exclude: "application.rb|routes.rb"
# run: bundle exec rubocop --force-exclusion {all_files}
# govet:
# tags: backend style
# files: git ls-files -m
# glob: "*.go"
# run: go vet {files}
# scripts:
# "hello.js":
# runner: node
# "any.go":
# runner: go run