small refactor

This commit is contained in:
Kononnable 2020-02-09 22:03:13 +01:00
parent 81a07e6dba
commit f2d97b267a
2 changed files with 2 additions and 2 deletions

View File

@ -12,7 +12,7 @@ export default interface IGenerationOptions {
convertCaseFile: "pascal" | "param" | "camel" | "none";
convertCaseEntity: "pascal" | "camel" | "none";
convertCaseProperty: "pascal" | "camel" | "none";
convertEol: string;
convertEol: "LF" | "CRLF";
propertyVisibility: "public" | "protected" | "private" | "none";
lazy: boolean;
activeRecord: boolean;

View File

@ -531,7 +531,7 @@ async function useInquirer(options: options): Promise<options> {
defaultGenerationOptions.convertCaseFile
},
{
name: "Change EOL to be \\n or \\r\\n",
name: "Use specific EOL character",
value: "converteol",
checked: false
},