Skip to content

Commit bc09cfd

Browse files
committed
Lint fixes
1 parent fda886a commit bc09cfd

File tree

3 files changed

+3
-4
lines changed

3 files changed

+3
-4
lines changed

__mocks__/fileTransformer.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
const path = require('path');
22

33
module.exports = {
4-
process(src, filename, config, options) {
4+
process(src, filename) {
55
return 'module.exports = ' + JSON.stringify(path.basename(filename)) + ';';
66
}
77
};

src/DefaultPlayer/Seek/Seek.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import React from 'react';
22
import styles from './Seek.css';
33

4-
export default ({ onChange, duration, percentagePlayed, percentageBuffered, className }) => {
4+
export default ({ onChange, percentagePlayed, percentageBuffered, className }) => {
55
return (
66
<div className={[
77
styles.component,

src/video/api.test.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,7 @@ import {
66
fullscreen,
77
togglePause,
88
setCurrentTime,
9-
getPercentagePlayed,
10-
getPercentageBuffered
9+
getPercentagePlayed
1110
} from './api';
1211

1312
describe('api', () => {

0 commit comments

Comments
 (0)