mirror of
https://github.com/grafana/grafana.git
synced 2024-11-21 16:38:03 -06:00
f382bd402c
Remove i18n psuedo precommit hook
45 lines
910 B
YAML
45 lines
910 B
YAML
skip_output:
|
|
- meta
|
|
- execution_out
|
|
- skips
|
|
|
|
min_version: 1.4.3
|
|
|
|
rc: ./lefthook.rc
|
|
|
|
pre-commit:
|
|
parallel: true
|
|
commands:
|
|
frontend-betterer:
|
|
glob: '*.{ts,tsx}'
|
|
run: |
|
|
yarn betterer precommit {staged_files}
|
|
stage_fixed: true
|
|
|
|
frontend-lint:
|
|
glob: '*.{js,ts,tsx}'
|
|
run: |
|
|
yarn eslint --ext .js,.tsx,.ts --cache --fix {staged_files}
|
|
yarn prettier --write {staged_files}
|
|
stage_fixed: true
|
|
|
|
other-format:
|
|
glob: '*.{json,scss,md,mdx}'
|
|
run: yarn prettier --write {staged_files}
|
|
stage_fixed: true
|
|
|
|
backend-format:
|
|
glob: '*pkg/**/*.go'
|
|
run: gofmt -w -s {staged_files}
|
|
stage_fixed: true
|
|
|
|
cue-fix-kinds:
|
|
glob: '*kinds/**/*.cue'
|
|
run: make fix-cue
|
|
stage_fixed: true
|
|
|
|
cue-fix-public:
|
|
glob: '*public/app/plugins/**/**/*.cue'
|
|
run: make fix-cue
|
|
stage_fixed: true
|