Skip to content

Commit 551f0a0

Browse files
committed
Satisfy eslint warnings.
Because `eslint-react` is able to recognize them now.
1 parent 42ffa0e commit 551f0a0

1 file changed

Lines changed: 6 additions & 1 deletion

File tree

src/ProgressBar.js

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
/* eslint react/prop-types: [1, {ignore: ["className", "bsStyle"]}]*/
2+
/* BootstrapMixin contains `bsStyle` type validation */
3+
14
import React, { cloneElement, PropTypes } from 'react';
25
import Interpolate from './Interpolate';
36
import BootstrapMixin from './BootstrapMixin';
@@ -14,7 +17,9 @@ const ProgressBar = React.createClass({
1417
srOnly: PropTypes.bool,
1518
striped: PropTypes.bool,
1619
active: PropTypes.bool,
17-
children: onlyProgressBar
20+
children: onlyProgressBar,
21+
interpolateClass: PropTypes.node,
22+
isChild: PropTypes.bool
1823
},
1924

2025
mixins: [BootstrapMixin],

0 commit comments

Comments
 (0)