Coding
Was this helpful?
Was this helpful?
Use upper camel case when naming classes.
Declare variables with const if their values should not change during the application lifetime.
Consider spelling const variables in lower camel case.
tolerate existing const variables that are spelled in UPPER_SNAKE_CASE. Because some third party modules use it.
Name an interface using upper camel case.
Naming an interface without an I prefix.
Consider using a class instead of an interface.
Use lower camel case to name properties and methods.
Do not use prefixing private properties and methods with an underscore.
Leave one empty line between third party imports and applications imports.
List the import lines alphabetized by the module.
List destructed imported symbols alphabetically.