Names should be clear, descriptive and follow consistent patterns. Choose names that accurately reflect the purpose and behavior of the code element:
Names should be clear, descriptive and follow consistent patterns. Choose names that accurately reflect the purpose and behavior of the code element:
isActivated
not deactive
)PluginParam
not pluginParam
)ComputedRefImpl
not _ComputedRef
)immediate
over runOnce
)VNodeKey
over VKey
)Example:
// Bad
class _ComputedRef {
isDeactive: boolean
runOnce: boolean
}
// Good
class ComputedRefImpl {
isActivated: boolean
immediate: boolean
}
Enter the URL of a public GitHub repository