1 Star 0 Fork 0

城北徐公/mediasoup

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
gulpfile.js 581 Bytes
一键复制 编辑 原始数据 按行查看 历史
const gulp = require('gulp');
const clangFormat = require('gulp-clang-format');
const workerFiles =
[
'worker/src/**/*.cpp',
'worker/include/**/*.hpp',
'worker/test/src/**/*.cpp',
'worker/test/include/helpers.hpp',
'worker/fuzzer/src/**/*.cpp',
'worker/fuzzer/include/**/*.hpp'
];
gulp.task('lint:worker', () =>
{
return gulp.src(workerFiles)
.pipe(clangFormat.checkFormat('file', null, { verbose: true, fail: true }));
});
gulp.task('format:worker', () =>
{
return gulp.src(workerFiles, { base: '.' })
.pipe(clangFormat.format('file'))
.pipe(gulp.dest('.'));
});
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/HeroYx/mediasoup.git
git@gitee.com:HeroYx/mediasoup.git
HeroYx
mediasoup
mediasoup
issue-357

搜索帮助