File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change 11# ADR018: Naming style
22
3- ** Status** : Accepted and active; pending migration .
3+ ** Status** : Accepted and active.
44
55## Context
66
@@ -14,10 +14,10 @@ quick-lint-js uses the following styles for C++ code based on the C++ standard
1414library's naming conventions:
1515
1616* types
17- * classes: ` Upper_Snake_Case ` (previously: ` lower_snake_case ` )
18- * enums: ` Upper_Snake_Case ` (previously: ` lower_snake_case ` )
19- * type aliases: ` Upper_Snake_Case ` (previously: ` lower_snake_case ` )
20- * type template parameters: ` Upper_Snake_Case ` (previously: ` UpperCamelCase ` )
17+ * classes: ` Upper_Snake_Case `
18+ * enums: ` Upper_Snake_Case `
19+ * type aliases: ` Upper_Snake_Case `
20+ * type template parameters: ` Upper_Snake_Case `
2121* values
2222 * local variables: ` lower_snake_case `
2323 * global variables: ` lower_snake_case `
@@ -26,7 +26,7 @@ library's naming conventions:
2626 * private: ` lower_snake_case_ ` (trailing underscore)
2727 * enum members: ` lower_snake_case `
2828 * parameter variables: ` lower_snake_case `
29- * variable template parameters: ` lower_snake_case ` (previously: ` UpperCamelCase ` )
29+ * variable template parameters: ` lower_snake_case `
3030* functions
3131 * free functions: ` lower_snake_case `
3232 * class methods: ` lower_snake_case `
You can’t perform that action at this time.
0 commit comments