balena-supervisor/.lintstagedrc
Roman Mazur bea97f47a7
Use resin-lint for mocha tests check
Change-type: patch
Signed-off-by: Roman Mazur <roman@balena.io>
2019-07-08 19:07:47 +03:00

17 lines
307 B
Plaintext

{
"*.coffee": [
"resin-lint"
],
"*.ts": [
"prettier --config ./node_modules/resin-lint/config/.prettierrc --write",
"resin-lint --typescript --no-prettier",
"git add"
],
"test/**/*.coffee": [
"resin-lint --tests"
],
"test/**/*.ts": [
"resin-lint --typescript --no-prettier --tests"
],
}