Lint TypeScript and CoffeeScript with resin-lint

Change-Type: patch
This commit is contained in:
Tim Perry
2018-01-04 14:07:55 +00:00
parent f25442c036
commit 6daed83d88
30 changed files with 123 additions and 132 deletions

View File

@ -22,7 +22,7 @@ export function validateEmail(input: string) {
}
return true;
};
}
export function validatePassword(input: string) {
if (input.length < 8) {
@ -30,7 +30,7 @@ export function validatePassword(input: string) {
}
return true;
};
}
export function validateApplicationName(input: string) {
if (input.length < 4) {
@ -38,4 +38,4 @@ export function validateApplicationName(input: string) {
}
return true;
};
}