forked from funforfans/excel2Flat
-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.json
23 lines (23 loc) · 952 Bytes
/
config.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
"_excel_extension": "excel文件的后缀",
"excel_extension": "xlsx",
"_excel_rootPath": "excel配置文件存放路径",
"excel_rootPath": "excel",
"_header_length": "excel文件头的长度",
"header_length": 4,
"_output_fbs_rootPath": "fbs文件输出路径",
"output_fbs_rootPath": "generated_fbs",
"_output_bin_rootPath": "二进制文件输出路径",
"output_bin_rootPath": "generated_bins",
"_flat_path":"flat工具路径",
"flat_path": "flatc/flatc",
"_support_datatypes": "excel配置支持的基本数据类型",
"support_datatypes":["string", "int", "float", "byte", "bool"],
"_replace_dict": "对应不标准数据类型写法的兼容配置映射",
"replace_dict":{"boolean": "bool",
"String": "string",
"int[]": "string"
},
"_generate_lang_type": "生成对应的语言",
"generate_lang_type":["go", "rust", "python", "csharp", "bins", "fbs"]
}