Lint test files too (#14791)

This commit is contained in:
Andy
2017-02-23 07:15:16 -08:00
committed by GitHub
parent 89328a754d
commit 555ea54770
829 changed files with 17225 additions and 18162 deletions

View File

@@ -1,22 +1,19 @@
import * as React from "react"
import * as MaskedInput from "react-maskedinput"
import * as React from "react";
import * as MaskedInput from "react-maskedinput";
class Test extends React.Component<any, any> {
public render () {
render() {
return (
<MaskedInput mask="111"
placeholderChar="X"
formatCharacter={
{
"a" : {
a: {
validate: (char: string) => char,
transform: (char: string) => char
}
}
} />
)
);
}
}