chore: support idl files of cn2en script (#336)

main
tecvan 3 months ago committed by GitHub
parent bb74272385
commit ab82507fd2
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 2
      common/autoinstallers/rush-commands/src/convert-comments/cli/config.ts
  2. 4
      common/autoinstallers/rush-commands/src/convert-comments/modules/file-scan.ts
  3. 1
      common/autoinstallers/rush-commands/src/convert-comments/types/index.ts
  4. 12
      common/autoinstallers/rush-commands/src/convert-comments/utils/language.ts

@ -21,7 +21,7 @@ const DEFAULT_CONFIG: AppConfig = {
'yaml', 'yml', 'toml', 'ini', 'conf', 'config',
'sh', 'bash', 'zsh', 'fish', 'py', 'css', 'scss', 'sass', 'less',
'html', 'htm', 'xml', 'php', 'rb', 'rs', 'java', 'c', 'h',
'cpp', 'cxx', 'cc', 'hpp', 'cs'
'cpp', 'cxx', 'cc', 'hpp', 'cs', 'thrift'
],
outputFormat: 'console'
},

@ -57,9 +57,7 @@ export const getSourceFiles = async (config: FileScanConfig): Promise<Result<str
files = files.filter(isTextFile);
// 根据扩展名过滤
if (extensions.length > 0) {
files = filterFilesByExtensions(files, extensions);
}
files = filterFilesByExtensions(files, extensions);
return files;
});

@ -23,6 +23,7 @@ export type SourceFileLanguage =
| 'c'
| 'cpp'
| 'csharp'
| 'thrift'
| 'other';
/**

@ -43,7 +43,8 @@ export const detectLanguage = (filePath: string): SourceFileLanguage => {
'cxx': 'cpp',
'cc': 'cpp',
'hpp': 'cpp',
'cs': 'csharp'
'cs': 'csharp',
'thrift': 'thrift'
};
return languageMap[ext || ''] || 'other';
@ -63,7 +64,7 @@ export const filterFilesByExtensions = (
'.yaml', '.yml', '.toml', '.ini', '.conf', '.config',
'.sh', '.bash', '.zsh', '.fish', '.py', '.css', '.scss', '.sass', '.less',
'.html', '.htm', '.xml', '.php', '.rb', '.rs', '.java', '.c', '.h',
'.cpp', '.cxx', '.cc', '.hpp', '.cs'
'.cpp', '.cxx', '.cc', '.hpp', '.cs', '.thrift'
];
return files.filter(file =>
defaultExtensions.some(ext => file.toLowerCase().endsWith(ext))
@ -191,6 +192,11 @@ export const getCommentPatterns = (language: SourceFileLanguage): CommentPattern
multiStart: /\/\*/g,
multiEnd: /\*\//g
},
thrift: {
single: /\/\/(.*)$/gm,
multiStart: /\/\*/g,
multiEnd: /\*\//g
},
other: {
single: /\/\/(.*)$/gm,
multiStart: /\/\*/g,
@ -218,7 +224,7 @@ export const isTextFile = (filePath: string): boolean => {
'.css', '.scss', '.sass', '.less', '.html', '.htm', '.xml',
'.yaml', '.yml', '.toml', '.ini', '.conf', '.config',
'.sh', '.bash', '.zsh', '.fish', '.py', '.java', '.c', '.cpp', '.h', '.hpp', '.cs',
'.php', '.rb', '.rs', '.kt', '.swift', '.dart', '.scala'
'.php', '.rb', '.rs', '.kt', '.swift', '.dart', '.scala', '.thrift'
];
return textExtensions.some(ext =>

Loading…
Cancel
Save