Reorg folders and use core as ffmpeg from now on

This commit is contained in:
Jerome Wu
2022-09-22 13:06:44 +08:00
parent 4f03229810
commit 20790e4fd2
138 changed files with 10505 additions and 1223 deletions

15
src/bind/.eslintrc.cjs Normal file
View File

@@ -0,0 +1,15 @@
module.exports = {
extends: "eslint:recommended",
rules: {
"@typescript-eslint/no-empty-function": 0,
"@typescript-eslint/no-unsafe-assignment": 0,
"@typescript-eslint/restrict-plus-operands": 0,
"@typescript-eslint/no-unsafe-call": 0,
"@typescript-eslint/no-unsafe-return": 0,
"@typescript-eslint/no-unsafe-member-access": 0,
},
globals: {
Module: true,
console: true,
},
};