Skip to content

Commit

Permalink
fix: Add naming conventions: "kebab-case", "camelCase", "PascalCase",…
Browse files Browse the repository at this point in the history
… "snake_case", "SCREAMING_SNAKE_CASE"
  • Loading branch information
sapegin committed Jul 8, 2024
1 parent 7a46ecb commit 13603d0
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions terms.jsonc
Original file line number Diff line number Diff line change
Expand Up @@ -272,6 +272,13 @@
["(?<=(?:\\w+[^.?!])? )webpack\\b", "webpack"],
["(?<=(?:\\w+[^.?!])? )npm\\b", "npm"],

// Cases
["kebab[- ]?case", "kebab-case"],
["camel[- ]?case", "camelCase"],
["pascal[- ]?case", "PascalCase"],
["snake[- ]?case", "snake_case"],
["screaming[- ]?snake[- ]?case", "SCREAMING_SNAKE_CASE"],

// Typos
["environemnt(s)?", "environment$1"],
["flacky test(s)?", "flaky test$1"],
Expand Down

0 comments on commit 13603d0

Please sign in to comment.