Release 0.2.0-beta
npm package: https://www.npmjs.com/package/eslint-plugin-export-restrict
About
add feature for detecting private variables declarations.
// ------- bad -------
/** @private */
export const a = {}
export {
a
}
// ------- good -------
/** @private */
export const a = {}