-
Notifications
You must be signed in to change notification settings - Fork 1.8k
Commit
Reviewed By: dsainati1 Differential Revision: D15541620 fbshipit-source-id: e19795e13d47dca58c5603b308b7cd60ba67ef86
- Loading branch information
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -42,4 +42,4 @@ untyped-import | |
untyped-type-import | ||
|
||
[version] | ||
^0.98.0 | ||
^0.99.0 |
Original file line number | Diff line number | Diff line change | ||
---|---|---|---|---|
|
@@ -109,9 +109,15 @@ function getLanguagePlugin(language: string): PluginInterface { | |||
// eslint-disable-next-line no-eval | ||||
let languagePlugin: LanguagePlugin = eval('require')(requirePath); | ||||
if (languagePlugin.default) { | ||||
/* $ /* $FlowFixMe(>=0.99.0 site=react_native_fb) This comment suppresses an | ||||
* error found when Flow v0.99 was deployed. To see the error, delete | ||||
* this comment and run Flow. */ | ||||
languagePlugin = languagePlugin.default; | ||||
} | ||||
if (typeof languagePlugin === 'function') { | ||||
/* $ /* $FlowFixMe(>=0.99.0 site=react_native_fb) This comment suppresses an | ||||
* error found when Flow v0.99 was deployed. To see the error, delete | ||||
* this comment and run Flow. */ | ||||
This comment has been minimized.
Sorry, something went wrong.
This comment has been minimized.
Sorry, something went wrong.
kassens
Member
|
suppress_comment=\\(.\\|\n\\)*\\$FlowFixMe\\($\\|[^(]\\|(\\(<VERSION>\\)? *\\(site=[a-z,_]*oss[a-z,_]*\\)?)\\) |
This comment has been minimized.
This comment has been minimized.
Sorry, something went wrong.
These don’t seem formatted correct, but even after fixing them they still show up when I run
yarn flow check
. What gives?