Skip to content

Commit

Permalink
default to having pluralizer enabled (just like the builtin tooling)
Browse files Browse the repository at this point in the history
fixes #1996
  • Loading branch information
ErikEJ committed Nov 7, 2023
1 parent 5f2f2d2 commit 962ae05
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/GUI/RevEng.Shared/Cli/Configuration/CodeGeneration.cs
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ public class CodeGeneration
public bool UseNullableReferenceTypes { get; set; } = true;

[JsonPropertyName("use-inflector")]
public bool UseInflector { get; set; }
public bool UseInflector { get; set; } = true;

[JsonPropertyName("use-legacy-inflector")]
public bool UseLegacyInflector { get; set; }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ public class ReverseEngineerOptions
public string ContextClassName { get; set; }
public List<SerializationTableModel> Tables { get; set; }
public bool UseDatabaseNames { get; set; }
public bool UseInflector { get; set; }
public bool UseInflector { get; set; } = true;
public List<string> UncountableWords { get; set; }
public bool UseHandleBars { get; set; }
public bool UseT4 { get; set; }
Expand Down

0 comments on commit 962ae05

Please sign in to comment.