mirror of
https://github.com/balena-os/balena-supervisor.git
synced 2024-12-19 13:47:54 +00:00
bea97f47a7
Change-type: patch Signed-off-by: Roman Mazur <roman@balena.io>
17 lines
307 B
Plaintext
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"
|
|
],
|
|
}
|