Skip to content

Commit

Permalink
Fix lint errors
Browse files Browse the repository at this point in the history
  • Loading branch information
andreidmt committed Jan 3, 2019
1 parent 7460fa9 commit 487d981
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 2 deletions.
1 change: 1 addition & 0 deletions src/index.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ const screen = blessed.screen({
})

screen.key(["escape", "q", "C-c"], () => {
// eslint-disable-next-line unicorn/no-process-exit
process.exit(0)
})

Expand Down
2 changes: 1 addition & 1 deletion src/ui/file/file.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ class UIFile extends React.Component<PropsType, StateType> {
*/
componentDidMount = () => {
if (this.refBox) {
this.refBox
// this.refBox
}
}

Expand Down
1 change: 0 additions & 1 deletion src/ui/list/list__item.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
const debug = require("debug")("TapeUI:UIListItem")

import * as React from "react"
import unicode from "figures"
import chalk from "chalk"
import { isEmpty } from "@asd14/m"

Expand Down

0 comments on commit 487d981

Please sign in to comment.