balena-supervisor/.lintstagedrc
Pagan Gazzard 9c3295c912 Add type checking for javascript files
Change-type: patch
2020-03-24 16:37:28 +00:00

18 lines
279 B
Plaintext

{
"*.coffee": [
"resin-lint"
],
"*.ts": [
"resin-lint --typescript --fix",
],
"*!(*webpack.config).js": [
"resin-lint --typescript --fix",
],
"test/**/*.coffee": [
"resin-lint --tests"
],
"test/**/*.ts": [
"resin-lint --typescript --no-prettier --tests"
],
}