fix(lint) don't check for Flow types on files without the annotation
This commit is contained in:
parent
fea59e472a
commit
1d275e1976
|
@ -11,6 +11,9 @@ module.exports = {
|
||||||
'react/jsx-indent-props': 0
|
'react/jsx-indent-props': 0
|
||||||
},
|
},
|
||||||
'settings': {
|
'settings': {
|
||||||
|
'flowtype': {
|
||||||
|
'onlyFilesWithFlowAnnotation': true
|
||||||
|
},
|
||||||
'react': {
|
'react': {
|
||||||
'version': 'detect'
|
'version': 'detect'
|
||||||
}
|
}
|
||||||
|
|
|
@ -15,7 +15,7 @@ import AbstractVideoManager, {
|
||||||
*
|
*
|
||||||
* @returns {void}
|
* @returns {void}
|
||||||
*/
|
*/
|
||||||
class YoutubeVideoManager extends AbstractVideoManager<Props> {
|
class YoutubeVideoManager extends AbstractVideoManager {
|
||||||
/**
|
/**
|
||||||
* Initializes a new YoutubeVideoManager instance.
|
* Initializes a new YoutubeVideoManager instance.
|
||||||
*
|
*
|
||||||
|
|
Loading…
Reference in New Issue