Add tslint config to enable consistent lint process

The lint configuration used seems to vary between build machines, and
this is a bug in resin-lint. Until that's fixed, we provide another
tslint which points to the resin-lint configuration.

Signed-off-by: Cameron Diver <cameron@balena.io>
This commit is contained in:
Cameron Diver 2019-04-24 12:47:46 +01:00
parent d412d39164
commit 7b5272e926
2 changed files with 6 additions and 1 deletions

1
.gitignore vendored
View File

@ -30,7 +30,6 @@ package-lock.json
.balenaconf
resinrc.yml
balenarc.yml
tslint.json
.DS_Store
.idea

6
tslint.json Normal file
View File

@ -0,0 +1,6 @@
{
"extends": "./node_modules/resin-lint/config/tslint-prettier.json",
"rules": {
"ignoreDefinitionFiles": false
}
}