mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2026-02-03 23:42:50 +00:00
refactor: remove tslint rule
This commit is contained in:
parent
4edec4dfad
commit
50f6ccdb2b
@ -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) => {
|
||||
|
||||
@ -1,6 +1 @@
|
||||
{
|
||||
"extends": "dtslint/dt.json",
|
||||
"rules": {
|
||||
"no-empty-interface": false
|
||||
}
|
||||
}
|
||||
{ "extends": "dtslint/dt.json" }
|
||||
|
||||
Loading…
Reference in New Issue
Block a user