Skip to content
This repository has been archived by the owner on Jun 22, 2021. It is now read-only.

Commit

Permalink
ci(circle): Fixes linting errors.
Browse files Browse the repository at this point in the history
  • Loading branch information
ryasmi committed Feb 25, 2018
1 parent 9aa061f commit f071cb1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/presenter/utils/ConnectProvider.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ export interface Props {
}

// tslint:disable:no-class no-this
export default class ConnectProvider extends React.Component<Props, {}> {
export default class ConnectProvider extends React.Component<Props> {
public static readonly childContextTypes = {
observer: PropTypes.any.isRequired,
service: PropTypes.any.isRequired,
Expand Down
2 changes: 1 addition & 1 deletion src/presenter/utils/SyncConnect.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ export interface Props {
}

// tslint:disable:no-class no-this
export default class SyncConnect extends React.Component<Props, {}> {
export default class SyncConnect extends React.Component<Props> {
public static readonly contextTypes = {
observer: PropTypes.any.isRequired,
service: PropTypes.any.isRequired,
Expand Down

0 comments on commit f071cb1

Please sign in to comment.