refactor: remove tslint rule

This commit is contained in:
Anton Bortnikov 2019-03-26 20:54:39 +05:00
parent 4edec4dfad
commit 50f6ccdb2b
2 changed files with 10 additions and 9 deletions

View File

@ -9,9 +9,15 @@ import {
TabContentProps
} from 'react-tabs-redux';
interface TestTabsProps extends TabsProps {}
interface TestTabLinkProps extends TabLinkProps {}
interface TestTabContentProps extends TabContentProps {}
interface TestTabsProps extends TabsProps {
handleSomething: () => void;
}
interface TestTabLinkProps extends TabLinkProps {
link: string;
}
interface TestTabContentProps extends TabContentProps {
tabIndex: number;
}
class TestApp extends React.Component {
onChange = (selectedTab: string, name: string) => {

View File

@ -1,6 +1 @@
{
"extends": "dtslint/dt.json",
"rules": {
"no-empty-interface": false
}
}
{ "extends": "dtslint/dt.json" }