UNPKG

eslint-plugin-perfectionist

Version:

ESLint plugin for sorting various data such as objects, imports, types, enums, JSX props, etc.

9 lines (8 loc) 232 B
function computeDependencyName({ nodeNameWithoutStartingHash, hasPrivateHash, isStatic, }) { return `${isStatic ? 'static ' : ''}${hasPrivateHash ? '#' : ''}${nodeNameWithoutStartingHash}` } export { computeDependencyName }