You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Dec 24, 2022. It is now read-only.
@@ -422,6 +422,15 @@ The following is a list of `bool` options you can use to configure many popular
422
422
<tr><td>StandardFormat</td><td>sf</td></tr>
423
423
</table>
424
424
425
+
### TextCase (tc)
426
+
427
+
<table>
428
+
<tr><td>Default</td><td>d</td></tr>
429
+
<tr><td>PascalCase</td><td>pc</td></tr>
430
+
<tr><td>CamelCase</td><td>cc</td></tr>
431
+
<tr><td>SnakeCase</td><td>sc</td></tr>
432
+
</table>
433
+
425
434
### PropertyConvention (pc)
426
435
427
436
<table>
@@ -449,7 +458,7 @@ using (JsConfig.With(new Config {
449
458
You can also create a custom config scope from a string manually using `JsConfig.CreateScope()` where you can use the full config name or their aliases, e.g:
450
459
451
460
```csharp
452
-
using (JsConfig.CreateScope("EmitLowercaseUnderscoreNames,EDV,dh:ut"))
461
+
using (JsConfig.CreateScope("IncludeNullValues,EDV,dh:ut"))
0 commit comments