Skip to content

Commit 6226cdb

Browse files
committed
feat(docs): update ADR status after completed migration
1 parent bc30c3f commit 6226cdb

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

docs/architecture/ADR018-Naming-style.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
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
1414
library'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`

0 commit comments

Comments
 (0)