Introduction
Contribute Guide
FAQ
Lexicon
C#
Argument Naming
Class Naming
Enum Naming
Interface Naming
Method Naming
Variable Naming
Namespaces Naming
Git
Branch Naming
Commit Message Naming
Pull Request Naming
Tag Naming
Java
Class Naming
Interface Naming
Method Naming
Variable Naming
Package Naming
Constant Naming
PHP
Class Naming
Interface Naming
Method Naming
Variable Naming
Constant Naming
Namespaces Naming
VueJS
Components Naming
Smart vs Dumb components Naming
Single instance components Naming
Components files Naming
Templates components Naming
Constants naming
Method Naming
Variable Naming
Python
Class Naming
Module Naming
Method Naming
Variable Naming
Constant Naming
Package Naming
Exception( Error ) Naming
Underscore
Ruby
Class Naming
Constant Naming
Module Naming
Method Naming
Package Naming
Variable Naming
Package Naming
Java Naming Convention > Package Naming
dotted.case
Should be all in lowercase letters such as util, lang
If contains multiple words, it should be separated by dots (.) e.g. java.util, com.java.lang
package
java.awt.event;
class
Car
{ ... }