Add auto-fixing pre-commit hook

This commit is contained in:
Mike Cooper 2018-02-23 16:01:24 -08:00
Родитель 41252a5e8e
Коммит 30725294ee
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 9424CEA6F89AB334
1 изменённых файлов: 11 добавлений и 0 удалений

11
.therapist.yml Normal file
Просмотреть файл

@ -0,0 +1,11 @@
actions:
prettier:
description: Prettier
run: ./node_modules/.bin/prettier --write {files} && git add -A
include: "*.js"
eslint:
description: ESLint
run: ./node_modules/.bin/eslint {files}
include:
- "*.js"