for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
export { fetchDataOnServer } from './utils';
fetchDataOnServer
/** global: fetchDataOnServer */
This checks looks for references to variables that have not been declared. This is most likey a typographical error or a variable has been renamed.
To learn more about declaring variables in Javascript, see the MDN.
export { default as reducer } from './module';
default
/** global: default */
export { default as FetchData } from './fetch-data';
This checks looks for references to variables that have not been declared. This is most likey a typographical error or a variable has been renamed.
To learn more about declaring variables in Javascript, see the MDN.