Skip to content

Commit

Permalink
Fix lint errors
Browse files Browse the repository at this point in the history
  • Loading branch information
rydama committed Jun 10, 2019
1 parent 2c6ee2b commit 2ad55db
Show file tree
Hide file tree
Showing 5 changed files with 156 additions and 2 deletions.
1 change: 1 addition & 0 deletions .eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
"amd": true
},
"extends": "eslint:recommended",
"parser": "babel-eslint",
"parserOptions": {
"ecmaFeatures": {
"jsx": true
Expand Down
152 changes: 152 additions & 0 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@
"copy-css": "cp node_modules/bootstrap/dist/css/bootstrap*.min.css extension/styles"
},
"devDependencies": {
"babel-eslint": "^10.0.1",
"babel-preset-es2015": "^6.24.0",
"babel-preset-react": "^6.23.0",
"babelify": "^7.3.0",
Expand Down
2 changes: 1 addition & 1 deletion src/playlist-details-panel.jsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import React from "react"
import PropTypes from "prop-types"
import CircularProgressbar from "react-circular-progressbar"
import { orderBy } from 'natural-orderby';
import { orderBy } from "natural-orderby"

class PlaylistDetailsPanel extends React.Component {
constructor(props) {
Expand Down
2 changes: 1 addition & 1 deletion src/playlist-panel.jsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import React from "react"
import PropTypes from "prop-types"
import PlaylistLink from "./playlist-link"
import { orderBy } from 'natural-orderby';
import { orderBy } from "natural-orderby"

class PlaylistPanel extends React.Component {

Expand Down

0 comments on commit 2ad55db

Please sign in to comment.