Skip to content

Release 0.2.0-beta

Choose a tag to compare

@tsukuha tsukuha released this 25 Dec 12:49
· 14 commits to main since this release

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 = {}