mirror of
https://gitea.com/mcereda/oam.git
synced 2026-02-08 21:34:25 +00:00
58 lines
1.7 KiB
YAML
58 lines
1.7 KiB
YAML
# See https://github.com/evilmartians/lefthook/blob/master/docs/configuration.md
|
|
|
|
assert_lefthook_installed: true
|
|
no_tty: true
|
|
|
|
lint: # name of a (custom in this case) hook
|
|
parallel: true # unleash the powaaaaaa!!
|
|
commands:
|
|
markdownlint: &markdownlint # command id, using some yaml shenanigans here
|
|
glob: "*.md" # limit the command to markdown files
|
|
run: docker run --rm -v "$PWD:/workdir" 'ghcr.io/igorshubovych/markdownlint-cli:latest' "*.md"
|
|
tslint:
|
|
files: find $PWD -type f -name "*.ts"
|
|
run: >-
|
|
docker run --rm -v "$PWD:/code" 'pipelinecomponents/eslint:latest'
|
|
eslint $( [[ -e .eslintrc ]] || echo '--no-eslintrc' ) --color {files}
|
|
|
|
pre-commit:
|
|
parallel: true
|
|
commands:
|
|
eslint:
|
|
glob: "*.{js,ts,jsx,tsx}"
|
|
run: yarn eslint {staged_files}
|
|
rubocop:
|
|
tags: backend style
|
|
glob: "*.rb"
|
|
exclude: '(^|/)(application|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}
|
|
markdownlint:
|
|
<<: *markdownlint # reuse the bits from above …
|
|
run: >- # … but change the command to limit the files to work with
|
|
docker run --rm -v "$PWD:/workdir" 'ghcr.io/igorshubovych/markdownlint-cli:latest'
|
|
{push_files}
|
|
scripts:
|
|
"hello.js":
|
|
runner: node
|
|
"any.go":
|
|
runner: go run
|
|
|
|
commit-msg:
|
|
commands:
|
|
commitlint:
|
|
run: commitlint --edit
|
|
|
|
pre-push:
|
|
commands:
|
|
packages-audit:
|
|
tags: frontend security
|
|
run: yarn audit
|
|
gems-audit:
|
|
tags: backend security
|
|
run: bundle audit
|