diff options
author | Shin'ya Ueoka <ueokande@i-beam.org> | 2019-05-22 20:30:20 +0900 |
---|---|---|
committer | Shin'ya Ueoka <ueokande@i-beam.org> | 2019-05-22 20:30:20 +0900 |
commit | fc1cd234d5643fde0abbd529a374e330cb4ab4b6 (patch) | |
tree | 75af476b86222cbb8a8546ace1f0ff606c24eeb3 /src/console | |
parent | 39d65b136aeb57022454e5b8d0a4a4a552f35243 (diff) |
Use @typescript-eslint/semi rule
Diffstat (limited to 'src/console')
-rw-r--r-- | src/console/components/Console.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/console/components/Console.tsx b/src/console/components/Console.tsx index 68cc523..7da2f36 100644 --- a/src/console/components/Console.tsx +++ b/src/console/components/Console.tsx @@ -13,7 +13,7 @@ type StateProps = ReturnType<typeof mapStateToProps>; interface DispatchProps { dispatch: (action: any) => void, } -type Props = StateProps & DispatchProps +type Props = StateProps & DispatchProps; class Console extends React.Component<Props> { private input: React.RefObject<Input>; |